From d79da8b10040d066bb4cf9b55d16715a5bec7808 Mon Sep 17 00:00:00 2001 From: Amar Zavery Date: Wed, 20 Apr 2016 17:36:33 -0700 Subject: [PATCH 1/2] fixes #2155 --- lib/cli.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/cli.js b/lib/cli.js index 66102e0456..80b00ef297 100644 --- a/lib/cli.js +++ b/lib/cli.js @@ -533,8 +533,9 @@ _.extend(AzureCli.prototype, { } if (!cat) { - var toBlame = (i>2) ? args[i-1] : category; - log.error('\'' + toBlame + '\' is not an azure command. See \'azure help\'.'); + var toBlame = (i > 2) ? args[i - 1] : category; + var msg = '\'' + toBlame + '\' is not an azure command. See \'azure help\'.'; + this.exit('error', msg, 1); } else { //if we are here, then it is about display help. command.categoryHelpInformation.apply(cat,[]); From 8123fdd094197cae3800452f8ba1484d607847a7 Mon Sep 17 00:00:00 2001 From: Amar Zavery Date: Wed, 20 Apr 2016 20:33:27 -0700 Subject: [PATCH 2/2] fixes #2785 --- lib/commands/arm/group/group._js | 17 +- lib/plugins.arm.json | 8 + test/commands/arm/group/arm.group-tests.js | 12 +- ...template_file_and_a_parameter_file.nock.js | 468 +++++------------- ..._template_uri_and_parameter_string.nock.js | 464 +++++------------ ...p_create_should_create_empty_group.nock.js | 172 +++---- ...nvalid_deployment_name_is_provided.nock.js | 30 +- ...invalid_resource_group_is_provided.nock.js | 30 +- ..._return_logs_of_all_the_operations.nock.js | 328 ++++++------ ..._of_the_last_deployment_by_default.nock.js | 70 +-- ..._with_the_--last-deployment_switch.nock.js | 70 +-- ...n_logs_of_the_specified_deployment.nock.js | 70 +-- ...show_information_of_an_empty_group.nock.js | 212 ++++---- .../suite.arm-cli-group-tests.nock.js | 6 +- 14 files changed, 768 insertions(+), 1189 deletions(-) diff --git a/lib/commands/arm/group/group._js b/lib/commands/arm/group/group._js index 2bbf20b495..11d09f3d67 100644 --- a/lib/commands/arm/group/group._js +++ b/lib/commands/arm/group/group._js @@ -130,6 +130,7 @@ exports.init = function (cli) { .description($('Deletes a resource group')) .usage('[options] ') .option('-n --name ', $('the resource group name')) + .option('--nowait', $('does not wait for the delete operation to complete. Returns as soon as the intial request is received by the server.')) .option('-q, --quiet', $('quiet mode (do not ask for delete confirmation)')) .option('--subscription ', $('the subscription identifier')) .execute(function (name, options, _) { @@ -140,10 +141,18 @@ exports.init = function (cli) { var subscription = profile.current.getSubscription(options.subscription); var client = utils.createResourceClient(subscription); var progress = cli.interaction.progress(util.format($('Deleting resource group %s'), name)); - try { - client.resourceGroups.deleteMethod(name, _); - } finally { - progress.end(); + if (options.nowait) { + try { + client.resourceGroups.beginDeleteMethod(name, _); + } finally { + progress.end(); + } + } else { + try { + client.resourceGroups.deleteMethod(name, _); + } finally { + progress.end(); + } } }); diff --git a/lib/plugins.arm.json b/lib/plugins.arm.json index 3852ddf150..44d47eba3f 100644 --- a/lib/plugins.arm.json +++ b/lib/plugins.arm.json @@ -33246,6 +33246,14 @@ "long": "--name", "description": "the resource group name" }, + { + "flags": "--nowait", + "required": 0, + "optional": 0, + "bool": true, + "long": "--nowait", + "description": "does not wait for the delete operation to complete. Returns as soon as the intial request is received by the server." + }, { "flags": "-q, --quiet", "required": 0, diff --git a/test/commands/arm/group/arm.group-tests.js b/test/commands/arm/group/arm.group-tests.js index 9952643677..f2f2316305 100644 --- a/test/commands/arm/group/arm.group-tests.js +++ b/test/commands/arm/group/arm.group-tests.js @@ -104,8 +104,14 @@ describe('arm', function () { var results = JSON.parse(listResult.text); results.length.should.be.above(0); - suite.execute('group delete %s --json --quiet', groupName, function () { - done(); + suite.execute('group delete --nowait %s --json --quiet', groupName, function (deleteResult) { + deleteResult.exitStatus.should.equal(0); + suite.execute('group list --json', function(result){ + result.exitStatus.should.equal(0); + var output = JSON.parse(result.text); + output.some(function (g) { return (g.name === groupName && g.location === normalizedTestLocation && g.properties.provisioningState === 'Deleting'); }).should.be.true; + done(); + }); }); }); }); @@ -286,7 +292,7 @@ describe('arm', function () { } function cleanupForLogShow (done) { - suite.execute('group delete %s --json --quiet', groupName, function () { + suite.execute('group delete %s --nowait --json --quiet', groupName, function () { console.log(' . Performing cleanup of group log show tests') done(); }); diff --git a/test/recordings/arm-cli-group-tests/arm_group_create_should_create_a_group_with_a_named_deployment_from_a_template_file_and_a_parameter_file.nock.js b/test/recordings/arm-cli-group-tests/arm_group_create_should_create_a_group_with_a_named_deployment_from_a_template_file_and_a_parameter_file.nock.js index 89371037bf..aa86399eed 100644 --- a/test/recordings/arm-cli-group-tests/arm_group_create_should_create_a_group_with_a_named_deployment_from_a_template_file_and_a_parameter_file.nock.js +++ b/test/recordings/arm-cli-group-tests/arm_group_create_should_create_a_group_with_a_named_deployment_from_a_template_file_and_a_parameter_file.nock.js @@ -6,13 +6,13 @@ exports.getMockedProfile = function () { var newProfile = new profile.Profile(); newProfile.addSubscription(new profile.Subscription({ - id: '00977cdb-163f-435f-9c32-39ec8ae61f4d', - name: 'node', + id: '3ca49042-782a-4cc9-89b5-ee1b487fe115', + name: 'AzSdkCore1', user: { name: 'user@domain.example', type: 'user' }, - tenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47', + tenantId: '1449d5b7-8a83-47db-ae4c-9b03e888bad0', state: 'Enabled', registeredProviders: [], _eventsCount: '1', @@ -29,36 +29,36 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486?api-version=2016-02-01') - .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGCreate4486' could not be found.\"}}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate9828?api-version=2016-02-01') + .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGCreate9828' could not be found.\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-failure-cause': 'gateway', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '31dc6c7e-87f2-4f86-8d88-b35efd013190', - 'x-ms-correlation-request-id': '31dc6c7e-87f2-4f86-8d88-b35efd013190', - 'x-ms-routing-request-id': 'WESTUS:20160130T171456Z:31dc6c7e-87f2-4f86-8d88-b35efd013190', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': '946e326b-d5c6-42aa-9d37-7954c705b34e', + 'x-ms-correlation-request-id': '946e326b-d5c6-42aa-9d37-7954c705b34e', + 'x-ms-routing-request-id': 'WESTUS:20160421T032700Z:946e326b-d5c6-42aa-9d37-7954c705b34e', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:14:55 GMT', + date: 'Thu, 21 Apr 2016 03:26:59 GMT', connection: 'close', 'content-length': '112' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486?api-version=2016-02-01') - .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGCreate4486' could not be found.\"}}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate9828?api-version=2016-02-01') + .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGCreate9828' could not be found.\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-failure-cause': 'gateway', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '31dc6c7e-87f2-4f86-8d88-b35efd013190', - 'x-ms-correlation-request-id': '31dc6c7e-87f2-4f86-8d88-b35efd013190', - 'x-ms-routing-request-id': 'WESTUS:20160130T171456Z:31dc6c7e-87f2-4f86-8d88-b35efd013190', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': '946e326b-d5c6-42aa-9d37-7954c705b34e', + 'x-ms-correlation-request-id': '946e326b-d5c6-42aa-9d37-7954c705b34e', + 'x-ms-routing-request-id': 'WESTUS:20160421T032700Z:946e326b-d5c6-42aa-9d37-7954c705b34e', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:14:55 GMT', + date: 'Thu, 21 Apr 2016 03:26:59 GMT', connection: 'close', 'content-length': '112' }); return result; }, @@ -66,456 +66,248 @@ function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486\",\"name\":\"xplatTestGCreate4486\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate9828?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828\",\"name\":\"xplatTestGCreate9828\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '203', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': 'c850d112-b527-4267-8ecc-b6b723ea5bbe', - 'x-ms-correlation-request-id': 'c850d112-b527-4267-8ecc-b6b723ea5bbe', - 'x-ms-routing-request-id': 'WESTUS:20160130T171457Z:c850d112-b527-4267-8ecc-b6b723ea5bbe', + 'x-ms-ratelimit-remaining-subscription-writes': '1198', + 'x-ms-request-id': '7f144fa5-bb88-42d2-aad2-d9913749c0cc', + 'x-ms-correlation-request-id': '7f144fa5-bb88-42d2-aad2-d9913749c0cc', + 'x-ms-routing-request-id': 'WESTUS:20160421T032700Z:7f144fa5-bb88-42d2-aad2-d9913749c0cc', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:14:57 GMT', + date: 'Thu, 21 Apr 2016 03:27:00 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486\",\"name\":\"xplatTestGCreate4486\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate9828?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828\",\"name\":\"xplatTestGCreate9828\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '203', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': 'c850d112-b527-4267-8ecc-b6b723ea5bbe', - 'x-ms-correlation-request-id': 'c850d112-b527-4267-8ecc-b6b723ea5bbe', - 'x-ms-routing-request-id': 'WESTUS:20160130T171457Z:c850d112-b527-4267-8ecc-b6b723ea5bbe', + 'x-ms-ratelimit-remaining-subscription-writes': '1198', + 'x-ms-request-id': '7f144fa5-bb88-42d2-aad2-d9913749c0cc', + 'x-ms-correlation-request-id': '7f144fa5-bb88-42d2-aad2-d9913749c0cc', + 'x-ms-routing-request-id': 'WESTUS:20160421T032700Z:7f144fa5-bb88-42d2-aad2-d9913749c0cc', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:14:57 GMT', + date: 'Thu, 21 Apr 2016 03:27:00 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile/validate?api-version=2016-02-01', '*') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile\",\"name\":\"mydepTemplateFile\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-01-30T17:14:58.6087955Z\",\"duration\":\"PT0S\",\"correlationId\":\"25e49502-3bbe-48cb-8de2-6d293664e31a\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate4486\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate4486\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"validatedResources\":[{\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"name\":\"xDeploymentTestHost5985\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"West US\",\"properties\":{\"name\":\"xDeploymentTestHost5985\",\"sku\":\"Basic\",\"workerSize\":\"0\",\"numberOfWorkers\":1}},{\"apiVersion\":\"2015-02-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"name\":\"xDeploymentTestSite854\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{\"hidden-related:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"xDeploymentTestSite854\",\"serverFarmId\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"}},{\"apiVersion\":\"2015-02-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/Sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"name\":\"xDeploymentTestSite854/MSDeploy\",\"type\":\"Microsoft.Web/sites/Extensions\",\"properties\":{\"packageUri\":\"https://auxmktplceprod.blob.core.windows.net/packages/StarterSite-modified.zip\",\"dbType\":\"None\",\"connectionString\":\"\",\"setParameters\":{\"Application Path\":\"xDeploymentTestSite854\"}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate4486\",\"name\":\"xDeploymentTestHost5985-xplatTestGCreate4486\",\"type\":\"microsoft.insights/autoscalesettings\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"profiles\":[{\"name\":\"Default\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"2\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT10M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":80},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT10M\"}},{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT1H\",\"timeAggregation\":\"Average\",\"operator\":\"LessThan\",\"threshold\":60},\"scaleAction\":{\"direction\":\"Decrease\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT1H\"}}]}],\"enabled\":false,\"name\":\"xDeploymentTestHost5985-xplatTestGCreate4486\",\"targetResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"name\":\"ServerErrors xDeploymentTestSite854\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"name\":\"ServerErrors xDeploymentTestSite854\",\"description\":\"xDeploymentTestSite854 has some server errors, status code 5xx.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"metricName\":\"Http5xx\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"name\":\"ForbiddenRequests xDeploymentTestSite854\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"name\":\"ForbiddenRequests xDeploymentTestSite854\",\"description\":\"xDeploymentTestSite854 has some requests that are forbidden, status code 403.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"metricName\":\"Http403\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"name\":\"CPUHigh xDeploymentTestHost5985\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"CPUHigh xDeploymentTestHost5985\",\"description\":\"The average CPU is high across all the instances of xDeploymentTestHost5985\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"metricName\":\"CpuPercentage\"},\"operator\":\"GreaterThan\",\"threshold\":90,\"windowSize\":\"PT15M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"name\":\"LongHttpQueue xDeploymentTestHost5985\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"LongHttpQueue xDeploymentTestHost5985\",\"description\":\"The HTTP queue for the instances of xDeploymentTestHost5985 has a large number of pending requests.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"metricName\":\"HttpQueueLength\"},\"operator\":\"GreaterThan\",\"threshold\":100,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/components/xDeploymentTestSite854\",\"name\":\"xDeploymentTestSite854\",\"type\":\"microsoft.insights/components\",\"location\":\"Central US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"applicationId\":\"xDeploymentTestSite854\"}}]}}", { 'cache-control': 'no-cache', +.post('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate9828/providers/Microsoft.Resources/deployments/mydepTemplateFile/validate?api-version=2016-02-01', '*') + .reply(200, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Resources/deployments/mydepTemplateFile\",\"name\":\"mydepTemplateFile\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-04-21T03:27:01.2948569Z\",\"duration\":\"PT0S\",\"correlationId\":\"a991f98c-7fe5-4631-869c-3d85941fe908\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate9828\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xplatTestGCreate9828\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"validatedResources\":[{\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"name\":\"xDeploymentTestHost27666\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"West US\",\"properties\":{\"name\":\"xDeploymentTestHost27666\",\"sku\":\"Standard\",\"workerSize\":\"0\",\"numberOfWorkers\":1}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"name\":\"xDeploymentTestSite14863\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{\"hidden-related:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"xDeploymentTestSite14863\",\"serverFarmId\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"name\":\"xDeploymentTestSite14863/MSDeploy\",\"type\":\"Microsoft.Web/sites/Extensions\",\"properties\":{\"packageUri\":\"https://auxmktplceprod.blob.core.windows.net/packages/StarterSite-modified.zip\",\"dbType\":\"None\",\"connectionString\":\"\",\"setParameters\":{\"Application Path\":\"xDeploymentTestSite14863\"}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate9828\",\"name\":\"xDeploymentTestHost27666-xplatTestGCreate9828\",\"type\":\"microsoft.insights/autoscalesettings\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"profiles\":[{\"name\":\"Default\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"2\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT10M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":80},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT10M\"}},{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT1H\",\"timeAggregation\":\"Average\",\"operator\":\"LessThan\",\"threshold\":60},\"scaleAction\":{\"direction\":\"Decrease\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT1H\"}}]}],\"enabled\":false,\"name\":\"xDeploymentTestHost27666-xplatTestGCreate9828\",\"targetResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"name\":\"ServerErrors xDeploymentTestSite14863\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"name\":\"ServerErrors xDeploymentTestSite14863\",\"description\":\"xDeploymentTestSite14863 has some server errors, status code 5xx.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"metricName\":\"Http5xx\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"name\":\"ForbiddenRequests xDeploymentTestSite14863\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"name\":\"ForbiddenRequests xDeploymentTestSite14863\",\"description\":\"xDeploymentTestSite14863 has some requests that are forbidden, status code 403.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"metricName\":\"Http403\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"name\":\"CPUHigh xDeploymentTestHost27666\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"CPUHigh xDeploymentTestHost27666\",\"description\":\"The average CPU is high across all the instances of xDeploymentTestHost27666\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"metricName\":\"CpuPercentage\"},\"operator\":\"GreaterThan\",\"threshold\":90,\"windowSize\":\"PT15M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"name\":\"LongHttpQueue xDeploymentTestHost27666\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"LongHttpQueue xDeploymentTestHost27666\",\"description\":\"The HTTP queue for the instances of xDeploymentTestHost27666 has a large number of pending requests.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"metricName\":\"HttpQueueLength\"},\"operator\":\"GreaterThan\",\"threshold\":100,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"name\":\"xDeploymentTestSite14863\",\"type\":\"microsoft.insights/components\",\"location\":\"Central US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"applicationId\":\"xDeploymentTestSite14863\"}}]}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '25e49502-3bbe-48cb-8de2-6d293664e31a', - 'x-ms-correlation-request-id': '25e49502-3bbe-48cb-8de2-6d293664e31a', - 'x-ms-routing-request-id': 'WESTUS:20160130T171459Z:25e49502-3bbe-48cb-8de2-6d293664e31a', + 'x-ms-ratelimit-remaining-subscription-writes': '1198', + 'x-ms-request-id': 'a991f98c-7fe5-4631-869c-3d85941fe908', + 'x-ms-correlation-request-id': 'a991f98c-7fe5-4631-869c-3d85941fe908', + 'x-ms-routing-request-id': 'WESTUS:20160421T032701Z:a991f98c-7fe5-4631-869c-3d85941fe908', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:14:58 GMT', + date: 'Thu, 21 Apr 2016 03:27:00 GMT', connection: 'close', - 'content-length': '15398' }); + 'content-length': '15537' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile/validate?api-version=2016-02-01', '*') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile\",\"name\":\"mydepTemplateFile\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-01-30T17:14:58.6087955Z\",\"duration\":\"PT0S\",\"correlationId\":\"25e49502-3bbe-48cb-8de2-6d293664e31a\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate4486\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate4486\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"validatedResources\":[{\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"name\":\"xDeploymentTestHost5985\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"West US\",\"properties\":{\"name\":\"xDeploymentTestHost5985\",\"sku\":\"Basic\",\"workerSize\":\"0\",\"numberOfWorkers\":1}},{\"apiVersion\":\"2015-02-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"name\":\"xDeploymentTestSite854\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{\"hidden-related:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"xDeploymentTestSite854\",\"serverFarmId\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"}},{\"apiVersion\":\"2015-02-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/Sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"name\":\"xDeploymentTestSite854/MSDeploy\",\"type\":\"Microsoft.Web/sites/Extensions\",\"properties\":{\"packageUri\":\"https://auxmktplceprod.blob.core.windows.net/packages/StarterSite-modified.zip\",\"dbType\":\"None\",\"connectionString\":\"\",\"setParameters\":{\"Application Path\":\"xDeploymentTestSite854\"}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate4486\",\"name\":\"xDeploymentTestHost5985-xplatTestGCreate4486\",\"type\":\"microsoft.insights/autoscalesettings\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"profiles\":[{\"name\":\"Default\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"2\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT10M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":80},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT10M\"}},{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT1H\",\"timeAggregation\":\"Average\",\"operator\":\"LessThan\",\"threshold\":60},\"scaleAction\":{\"direction\":\"Decrease\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT1H\"}}]}],\"enabled\":false,\"name\":\"xDeploymentTestHost5985-xplatTestGCreate4486\",\"targetResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"name\":\"ServerErrors xDeploymentTestSite854\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"name\":\"ServerErrors xDeploymentTestSite854\",\"description\":\"xDeploymentTestSite854 has some server errors, status code 5xx.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"metricName\":\"Http5xx\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"name\":\"ForbiddenRequests xDeploymentTestSite854\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"name\":\"ForbiddenRequests xDeploymentTestSite854\",\"description\":\"xDeploymentTestSite854 has some requests that are forbidden, status code 403.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"metricName\":\"Http403\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"name\":\"CPUHigh xDeploymentTestHost5985\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"CPUHigh xDeploymentTestHost5985\",\"description\":\"The average CPU is high across all the instances of xDeploymentTestHost5985\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"metricName\":\"CpuPercentage\"},\"operator\":\"GreaterThan\",\"threshold\":90,\"windowSize\":\"PT15M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"name\":\"LongHttpQueue xDeploymentTestHost5985\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"LongHttpQueue xDeploymentTestHost5985\",\"description\":\"The HTTP queue for the instances of xDeploymentTestHost5985 has a large number of pending requests.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"metricName\":\"HttpQueueLength\"},\"operator\":\"GreaterThan\",\"threshold\":100,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/components/xDeploymentTestSite854\",\"name\":\"xDeploymentTestSite854\",\"type\":\"microsoft.insights/components\",\"location\":\"Central US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"applicationId\":\"xDeploymentTestSite854\"}}]}}", { 'cache-control': 'no-cache', +.post('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate9828/providers/Microsoft.Resources/deployments/mydepTemplateFile/validate?api-version=2016-02-01', '*') + .reply(200, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Resources/deployments/mydepTemplateFile\",\"name\":\"mydepTemplateFile\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-04-21T03:27:01.2948569Z\",\"duration\":\"PT0S\",\"correlationId\":\"a991f98c-7fe5-4631-869c-3d85941fe908\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate9828\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xplatTestGCreate9828\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"validatedResources\":[{\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"name\":\"xDeploymentTestHost27666\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"West US\",\"properties\":{\"name\":\"xDeploymentTestHost27666\",\"sku\":\"Standard\",\"workerSize\":\"0\",\"numberOfWorkers\":1}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"name\":\"xDeploymentTestSite14863\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{\"hidden-related:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"xDeploymentTestSite14863\",\"serverFarmId\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"name\":\"xDeploymentTestSite14863/MSDeploy\",\"type\":\"Microsoft.Web/sites/Extensions\",\"properties\":{\"packageUri\":\"https://auxmktplceprod.blob.core.windows.net/packages/StarterSite-modified.zip\",\"dbType\":\"None\",\"connectionString\":\"\",\"setParameters\":{\"Application Path\":\"xDeploymentTestSite14863\"}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate9828\",\"name\":\"xDeploymentTestHost27666-xplatTestGCreate9828\",\"type\":\"microsoft.insights/autoscalesettings\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"profiles\":[{\"name\":\"Default\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"2\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT10M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":80},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT10M\"}},{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT1H\",\"timeAggregation\":\"Average\",\"operator\":\"LessThan\",\"threshold\":60},\"scaleAction\":{\"direction\":\"Decrease\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT1H\"}}]}],\"enabled\":false,\"name\":\"xDeploymentTestHost27666-xplatTestGCreate9828\",\"targetResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"name\":\"ServerErrors xDeploymentTestSite14863\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"name\":\"ServerErrors xDeploymentTestSite14863\",\"description\":\"xDeploymentTestSite14863 has some server errors, status code 5xx.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"metricName\":\"Http5xx\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"name\":\"ForbiddenRequests xDeploymentTestSite14863\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"name\":\"ForbiddenRequests xDeploymentTestSite14863\",\"description\":\"xDeploymentTestSite14863 has some requests that are forbidden, status code 403.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"metricName\":\"Http403\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"name\":\"CPUHigh xDeploymentTestHost27666\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"CPUHigh xDeploymentTestHost27666\",\"description\":\"The average CPU is high across all the instances of xDeploymentTestHost27666\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"metricName\":\"CpuPercentage\"},\"operator\":\"GreaterThan\",\"threshold\":90,\"windowSize\":\"PT15M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"name\":\"LongHttpQueue xDeploymentTestHost27666\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"LongHttpQueue xDeploymentTestHost27666\",\"description\":\"The HTTP queue for the instances of xDeploymentTestHost27666 has a large number of pending requests.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"metricName\":\"HttpQueueLength\"},\"operator\":\"GreaterThan\",\"threshold\":100,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"name\":\"xDeploymentTestSite14863\",\"type\":\"microsoft.insights/components\",\"location\":\"Central US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"applicationId\":\"xDeploymentTestSite14863\"}}]}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '25e49502-3bbe-48cb-8de2-6d293664e31a', - 'x-ms-correlation-request-id': '25e49502-3bbe-48cb-8de2-6d293664e31a', - 'x-ms-routing-request-id': 'WESTUS:20160130T171459Z:25e49502-3bbe-48cb-8de2-6d293664e31a', + 'x-ms-ratelimit-remaining-subscription-writes': '1198', + 'x-ms-request-id': 'a991f98c-7fe5-4631-869c-3d85941fe908', + 'x-ms-correlation-request-id': 'a991f98c-7fe5-4631-869c-3d85941fe908', + 'x-ms-routing-request-id': 'WESTUS:20160421T032701Z:a991f98c-7fe5-4631-869c-3d85941fe908', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:14:58 GMT', + date: 'Thu, 21 Apr 2016 03:27:00 GMT', connection: 'close', - 'content-length': '15398' }); + 'content-length': '15537' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile\",\"name\":\"mydepTemplateFile\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-01-30T17:15:00.7680301Z\",\"duration\":\"PT0.8806959S\",\"correlationId\":\"dc72bab9-ba27-44af-848a-74835489377c\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate4486\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate4486\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}]}}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate9828/providers/Microsoft.Resources/deployments/mydepTemplateFile?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Resources/deployments/mydepTemplateFile\",\"name\":\"mydepTemplateFile\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-04-21T03:27:02.7533147Z\",\"duration\":\"PT0.5822539S\",\"correlationId\":\"e62295be-2b00-4118-a97a-bff8af167d71\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate9828\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xplatTestGCreate9828\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'azure-asyncoperation': 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile/operationStatuses/08587474327855904155?api-version=2016-02-01', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': 'dc72bab9-ba27-44af-848a-74835489377c', - 'x-ms-correlation-request-id': 'dc72bab9-ba27-44af-848a-74835489377c', - 'x-ms-routing-request-id': 'WESTUS:20160130T171500Z:dc72bab9-ba27-44af-848a-74835489377c', + 'azure-asyncoperation': 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate9828/providers/Microsoft.Resources/deployments/mydepTemplateFile/operationStatuses/08587403976633066921?api-version=2016-02-01', + 'x-ms-ratelimit-remaining-subscription-writes': '1197', + 'x-ms-request-id': 'e62295be-2b00-4118-a97a-bff8af167d71', + 'x-ms-correlation-request-id': 'e62295be-2b00-4118-a97a-bff8af167d71', + 'x-ms-routing-request-id': 'WESTUS:20160421T032702Z:e62295be-2b00-4118-a97a-bff8af167d71', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:15:00 GMT', + date: 'Thu, 21 Apr 2016 03:27:01 GMT', connection: 'close', - 'content-length': '5241' }); + 'content-length': '5297' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile\",\"name\":\"mydepTemplateFile\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-01-30T17:15:00.7680301Z\",\"duration\":\"PT0.8806959S\",\"correlationId\":\"dc72bab9-ba27-44af-848a-74835489377c\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate4486\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate4486\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}]}}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate9828/providers/Microsoft.Resources/deployments/mydepTemplateFile?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Resources/deployments/mydepTemplateFile\",\"name\":\"mydepTemplateFile\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-04-21T03:27:02.7533147Z\",\"duration\":\"PT0.5822539S\",\"correlationId\":\"e62295be-2b00-4118-a97a-bff8af167d71\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate9828\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xplatTestGCreate9828\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'azure-asyncoperation': 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile/operationStatuses/08587474327855904155?api-version=2016-02-01', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': 'dc72bab9-ba27-44af-848a-74835489377c', - 'x-ms-correlation-request-id': 'dc72bab9-ba27-44af-848a-74835489377c', - 'x-ms-routing-request-id': 'WESTUS:20160130T171500Z:dc72bab9-ba27-44af-848a-74835489377c', + 'azure-asyncoperation': 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate9828/providers/Microsoft.Resources/deployments/mydepTemplateFile/operationStatuses/08587403976633066921?api-version=2016-02-01', + 'x-ms-ratelimit-remaining-subscription-writes': '1197', + 'x-ms-request-id': 'e62295be-2b00-4118-a97a-bff8af167d71', + 'x-ms-correlation-request-id': 'e62295be-2b00-4118-a97a-bff8af167d71', + 'x-ms-routing-request-id': 'WESTUS:20160421T032702Z:e62295be-2b00-4118-a97a-bff8af167d71', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:15:00 GMT', + date: 'Thu, 21 Apr 2016 03:27:01 GMT', connection: 'close', - 'content-length': '5241' }); + 'content-length': '5297' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile/operationStatuses/08587474327855904155?api-version=2016-02-01') - .reply(200, "{\"status\":\"Running\"}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups?api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Storage-WestUS\",\"name\":\"Default-Storage-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-NorthCentralUS\",\"name\":\"Default-Web-NorthCentralUS\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-WestUS\",\"name\":\"Default-Web-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828\",\"name\":\"xplatTestGCreate9828\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '273b5fe0-7f8b-4f73-a86c-49633afb08b2', - 'x-ms-correlation-request-id': '273b5fe0-7f8b-4f73-a86c-49633afb08b2', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171532Z:273b5fe0-7f8b-4f73-a86c-49633afb08b2', + 'x-ms-ratelimit-remaining-subscription-reads': '14996', + 'x-ms-request-id': '897e2d73-8557-499e-a903-f216e4970cfb', + 'x-ms-correlation-request-id': '897e2d73-8557-499e-a903-f216e4970cfb', + 'x-ms-routing-request-id': 'WESTUS:20160421T032703Z:897e2d73-8557-499e-a903-f216e4970cfb', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:15:31 GMT', + date: 'Thu, 21 Apr 2016 03:27:02 GMT', connection: 'close', - 'content-length': '20' }); + 'content-length': '817' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile/operationStatuses/08587474327855904155?api-version=2016-02-01') - .reply(200, "{\"status\":\"Running\"}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups?api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Storage-WestUS\",\"name\":\"Default-Storage-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-NorthCentralUS\",\"name\":\"Default-Web-NorthCentralUS\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-WestUS\",\"name\":\"Default-Web-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828\",\"name\":\"xplatTestGCreate9828\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '273b5fe0-7f8b-4f73-a86c-49633afb08b2', - 'x-ms-correlation-request-id': '273b5fe0-7f8b-4f73-a86c-49633afb08b2', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171532Z:273b5fe0-7f8b-4f73-a86c-49633afb08b2', + 'x-ms-ratelimit-remaining-subscription-reads': '14996', + 'x-ms-request-id': '897e2d73-8557-499e-a903-f216e4970cfb', + 'x-ms-correlation-request-id': '897e2d73-8557-499e-a903-f216e4970cfb', + 'x-ms-routing-request-id': 'WESTUS:20160421T032703Z:897e2d73-8557-499e-a903-f216e4970cfb', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:15:31 GMT', + date: 'Thu, 21 Apr 2016 03:27:02 GMT', connection: 'close', - 'content-length': '20' }); + 'content-length': '817' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile/operationStatuses/08587474327855904155?api-version=2016-02-01') - .reply(200, "{\"status\":\"Succeeded\"}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': 'bce9bac3-2067-476e-9896-4cca5f0922c8', - 'x-ms-correlation-request-id': 'bce9bac3-2067-476e-9896-4cca5f0922c8', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171603Z:bce9bac3-2067-476e-9896-4cca5f0922c8', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:16:02 GMT', - connection: 'close', - 'content-length': '22' }); - return result; }, -function (nock) { -var result = -nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile/operationStatuses/08587474327855904155?api-version=2016-02-01') - .reply(200, "{\"status\":\"Succeeded\"}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate9828/providers/Microsoft.Resources/deployments/?api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Resources/deployments/mydepTemplateFile\",\"name\":\"mydepTemplateFile\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Running\",\"timestamp\":\"2016-04-21T03:27:03.0764257Z\",\"duration\":\"PT0.9053649S\",\"correlationId\":\"e62295be-2b00-4118-a97a-bff8af167d71\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate9828\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xplatTestGCreate9828\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': 'bce9bac3-2067-476e-9896-4cca5f0922c8', - 'x-ms-correlation-request-id': 'bce9bac3-2067-476e-9896-4cca5f0922c8', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171603Z:bce9bac3-2067-476e-9896-4cca5f0922c8', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:16:02 GMT', - connection: 'close', - 'content-length': '22' }); - return result; }, -function (nock) { -var result = -nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile?api-version=2016-02-01') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile\",\"name\":\"mydepTemplateFile\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T17:16:00.8595647Z\",\"duration\":\"PT1M0.9722305S\",\"correlationId\":\"dc72bab9-ba27-44af-848a-74835489377c\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate4486\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate4486\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate4486\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': '6e7d722b-c9f7-4f26-a5d9-3b25f132fe43', - 'x-ms-correlation-request-id': '6e7d722b-c9f7-4f26-a5d9-3b25f132fe43', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171603Z:6e7d722b-c9f7-4f26-a5d9-3b25f132fe43', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:16:02 GMT', - connection: 'close', - 'content-length': '5979' }); - return result; }, -function (nock) { -var result = -nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile?api-version=2016-02-01') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile\",\"name\":\"mydepTemplateFile\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T17:16:00.8595647Z\",\"duration\":\"PT1M0.9722305S\",\"correlationId\":\"dc72bab9-ba27-44af-848a-74835489377c\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate4486\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate4486\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate4486\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': '6e7d722b-c9f7-4f26-a5d9-3b25f132fe43', - 'x-ms-correlation-request-id': '6e7d722b-c9f7-4f26-a5d9-3b25f132fe43', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171603Z:6e7d722b-c9f7-4f26-a5d9-3b25f132fe43', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:16:02 GMT', - connection: 'close', - 'content-length': '5979' }); - return result; }, -function (nock) { -var result = -nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups?api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/armclistorageGroup7836\",\"name\":\"armclistorageGroup7836\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-SQL-WestUS\",\"name\":\"Default-SQL-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Storage-SoutheastAsia\",\"name\":\"Default-Storage-SoutheastAsia\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Storage-WestUS\",\"name\":\"Default-Storage-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Web-WestUS\",\"name\":\"Default-Web-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/testfoo\",\"name\":\"testfoo\",\"location\":\"westus\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"\",\"tag3\":\"value3\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup2553\",\"name\":\"xDeploymentTestGroup2553\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup3957\",\"name\":\"xDeploymentTestGroup3957\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup7360\",\"name\":\"xDeploymentTestGroup7360\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatResourceGroupTagGrp3170\",\"name\":\"xplatResourceGroupTagGrp3170\",\"location\":\"westus\",\"tags\":{\"xplatResourceGroupTag2965\":\"\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatResourceGroupTagGrp5704\",\"name\":\"xplatResourceGroupTagGrp5704\",\"location\":\"westus\",\"tags\":{\"xplatResourceGroupTag6449\":\"fooValue\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2869\",\"name\":\"xplatTestGCreate2869\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2986\",\"name\":\"xplatTestGCreate2986\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4144\",\"name\":\"xplatTestGCreate4144\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486\",\"name\":\"xplatTestGCreate4486\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate6907\",\"name\":\"xplatTestGCreate6907\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate8685\",\"name\":\"xplatTestGCreate8685\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow1867\",\"name\":\"xplatTestGrpShow1867\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow3526\",\"name\":\"xplatTestGrpShow3526\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow9919\",\"name\":\"xplatTestGrpShow9919\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource1133\",\"name\":\"xTestResource1133\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource1351\",\"name\":\"xTestResource1351\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource22148\",\"name\":\"xTestResource22148\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource256\",\"name\":\"xTestResource256\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource2633\",\"name\":\"xTestResource2633\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource270\",\"name\":\"xTestResource270\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource3091\",\"name\":\"xTestResource3091\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource4407\",\"name\":\"xTestResource4407\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource5856\",\"name\":\"xTestResource5856\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource6449\",\"name\":\"xTestResource6449\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource6976\",\"name\":\"xTestResource6976\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource7036\",\"name\":\"xTestResource7036\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource7107\",\"name\":\"xTestResource7107\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource8014\",\"name\":\"xTestResource8014\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource9085\",\"name\":\"xTestResource9085\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource9821\",\"name\":\"xTestResource9821\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/ZiTest\",\"name\":\"ZiTest\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}]}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': 'fb227c39-f5b0-4f20-8708-6da02e34b7b7', - 'x-ms-correlation-request-id': 'fb227c39-f5b0-4f20-8708-6da02e34b7b7', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171603Z:fb227c39-f5b0-4f20-8708-6da02e34b7b7', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:16:03 GMT', - connection: 'close', - 'content-length': '7555' }); - return result; }, -function (nock) { -var result = -nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups?api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/armclistorageGroup7836\",\"name\":\"armclistorageGroup7836\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-SQL-WestUS\",\"name\":\"Default-SQL-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Storage-SoutheastAsia\",\"name\":\"Default-Storage-SoutheastAsia\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Storage-WestUS\",\"name\":\"Default-Storage-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Web-WestUS\",\"name\":\"Default-Web-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/testfoo\",\"name\":\"testfoo\",\"location\":\"westus\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"\",\"tag3\":\"value3\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup2553\",\"name\":\"xDeploymentTestGroup2553\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup3957\",\"name\":\"xDeploymentTestGroup3957\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup7360\",\"name\":\"xDeploymentTestGroup7360\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatResourceGroupTagGrp3170\",\"name\":\"xplatResourceGroupTagGrp3170\",\"location\":\"westus\",\"tags\":{\"xplatResourceGroupTag2965\":\"\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatResourceGroupTagGrp5704\",\"name\":\"xplatResourceGroupTagGrp5704\",\"location\":\"westus\",\"tags\":{\"xplatResourceGroupTag6449\":\"fooValue\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2869\",\"name\":\"xplatTestGCreate2869\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2986\",\"name\":\"xplatTestGCreate2986\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4144\",\"name\":\"xplatTestGCreate4144\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486\",\"name\":\"xplatTestGCreate4486\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate6907\",\"name\":\"xplatTestGCreate6907\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate8685\",\"name\":\"xplatTestGCreate8685\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow1867\",\"name\":\"xplatTestGrpShow1867\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow3526\",\"name\":\"xplatTestGrpShow3526\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow9919\",\"name\":\"xplatTestGrpShow9919\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource1133\",\"name\":\"xTestResource1133\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource1351\",\"name\":\"xTestResource1351\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource22148\",\"name\":\"xTestResource22148\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource256\",\"name\":\"xTestResource256\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource2633\",\"name\":\"xTestResource2633\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource270\",\"name\":\"xTestResource270\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource3091\",\"name\":\"xTestResource3091\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource4407\",\"name\":\"xTestResource4407\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource5856\",\"name\":\"xTestResource5856\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource6449\",\"name\":\"xTestResource6449\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource6976\",\"name\":\"xTestResource6976\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource7036\",\"name\":\"xTestResource7036\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource7107\",\"name\":\"xTestResource7107\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource8014\",\"name\":\"xTestResource8014\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource9085\",\"name\":\"xTestResource9085\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource9821\",\"name\":\"xTestResource9821\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/ZiTest\",\"name\":\"ZiTest\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}]}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': 'fb227c39-f5b0-4f20-8708-6da02e34b7b7', - 'x-ms-correlation-request-id': 'fb227c39-f5b0-4f20-8708-6da02e34b7b7', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171603Z:fb227c39-f5b0-4f20-8708-6da02e34b7b7', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:16:03 GMT', - connection: 'close', - 'content-length': '7555' }); - return result; }, -function (nock) { -var result = -nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/?api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile\",\"name\":\"mydepTemplateFile\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T17:16:00.8595647Z\",\"duration\":\"PT1M0.9722305S\",\"correlationId\":\"dc72bab9-ba27-44af-848a-74835489377c\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate4486\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate4486\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate4486\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}]}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': '3bf13bb8-6b5a-4343-98d0-9d5224813379', - 'x-ms-correlation-request-id': '3bf13bb8-6b5a-4343-98d0-9d5224813379', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171605Z:3bf13bb8-6b5a-4343-98d0-9d5224813379', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': 'ee433ce0-9760-4d3a-a07d-cfd3aac95614', + 'x-ms-correlation-request-id': 'ee433ce0-9760-4d3a-a07d-cfd3aac95614', + 'x-ms-routing-request-id': 'WESTUS:20160421T032703Z:ee433ce0-9760-4d3a-a07d-cfd3aac95614', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:16:04 GMT', + date: 'Thu, 21 Apr 2016 03:27:02 GMT', connection: 'close', - 'content-length': '5991' }); + 'content-length': '5308' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/?api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Resources/deployments/mydepTemplateFile\",\"name\":\"mydepTemplateFile\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T17:16:00.8595647Z\",\"duration\":\"PT1M0.9722305S\",\"correlationId\":\"dc72bab9-ba27-44af-848a-74835489377c\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate4486\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate4486\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4486/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate4486\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}]}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate9828/providers/Microsoft.Resources/deployments/?api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Resources/deployments/mydepTemplateFile\",\"name\":\"mydepTemplateFile\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Running\",\"timestamp\":\"2016-04-21T03:27:03.0764257Z\",\"duration\":\"PT0.9053649S\",\"correlationId\":\"e62295be-2b00-4118-a97a-bff8af167d71\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate9828\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xplatTestGCreate9828\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': '3bf13bb8-6b5a-4343-98d0-9d5224813379', - 'x-ms-correlation-request-id': '3bf13bb8-6b5a-4343-98d0-9d5224813379', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171605Z:3bf13bb8-6b5a-4343-98d0-9d5224813379', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:16:04 GMT', - connection: 'close', - 'content-length': '5991' }); - return result; }, -function (nock) { -var result = -nock('http://management.azure.com:443') - .delete('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486?api-version=2016-02-01') - .reply(202, "", { 'cache-control': 'no-cache', - pragma: 'no-cache', - expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', - 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '4ebd2a4b-b340-416c-a175-3fa7122ab5ec', - 'x-ms-correlation-request-id': '4ebd2a4b-b340-416c-a175-3fa7122ab5ec', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171606Z:4ebd2a4b-b340-416c-a175-3fa7122ab5ec', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:16:05 GMT', - connection: 'close', - 'content-length': '0' }); - return result; }, -function (nock) { -var result = -nock('https://management.azure.com:443') - .delete('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate4486?api-version=2016-02-01') - .reply(202, "", { 'cache-control': 'no-cache', - pragma: 'no-cache', - expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', - 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '4ebd2a4b-b340-416c-a175-3fa7122ab5ec', - 'x-ms-correlation-request-id': '4ebd2a4b-b340-416c-a175-3fa7122ab5ec', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171606Z:4ebd2a4b-b340-416c-a175-3fa7122ab5ec', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:16:05 GMT', - connection: 'close', - 'content-length': '0' }); - return result; }, -function (nock) { -var result = -nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') - .reply(202, "", { 'cache-control': 'no-cache', - pragma: 'no-cache', - expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', - 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': 'c57b275b-4be0-482f-862e-a85085ff6769', - 'x-ms-correlation-request-id': 'c57b275b-4be0-482f-862e-a85085ff6769', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171637Z:c57b275b-4be0-482f-862e-a85085ff6769', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:16:36 GMT', - connection: 'close', - 'content-length': '0' }); - return result; }, -function (nock) { -var result = -nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') - .reply(202, "", { 'cache-control': 'no-cache', - pragma: 'no-cache', - expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', - 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': 'c57b275b-4be0-482f-862e-a85085ff6769', - 'x-ms-correlation-request-id': 'c57b275b-4be0-482f-862e-a85085ff6769', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171637Z:c57b275b-4be0-482f-862e-a85085ff6769', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:16:36 GMT', - connection: 'close', - 'content-length': '0' }); - return result; }, -function (nock) { -var result = -nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') - .reply(202, "", { 'cache-control': 'no-cache', - pragma: 'no-cache', - expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', - 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': 'c09d10f7-1467-43dd-9c96-442ecb02db41', - 'x-ms-correlation-request-id': 'c09d10f7-1467-43dd-9c96-442ecb02db41', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171708Z:c09d10f7-1467-43dd-9c96-442ecb02db41', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:17:08 GMT', - connection: 'close', - 'content-length': '0' }); - return result; }, -function (nock) { -var result = -nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') - .reply(202, "", { 'cache-control': 'no-cache', - pragma: 'no-cache', - expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', - 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': 'c09d10f7-1467-43dd-9c96-442ecb02db41', - 'x-ms-correlation-request-id': 'c09d10f7-1467-43dd-9c96-442ecb02db41', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171708Z:c09d10f7-1467-43dd-9c96-442ecb02db41', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': 'ee433ce0-9760-4d3a-a07d-cfd3aac95614', + 'x-ms-correlation-request-id': 'ee433ce0-9760-4d3a-a07d-cfd3aac95614', + 'x-ms-routing-request-id': 'WESTUS:20160421T032703Z:ee433ce0-9760-4d3a-a07d-cfd3aac95614', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:17:08 GMT', + date: 'Thu, 21 Apr 2016 03:27:02 GMT', connection: 'close', - 'content-length': '0' }); + 'content-length': '5308' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') + .delete('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate9828?api-version=2016-02-01') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', + location: 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFOTgyOC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '9492b6ec-d4c5-410e-b2e9-408e7a279870', - 'x-ms-correlation-request-id': '9492b6ec-d4c5-410e-b2e9-408e7a279870', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171740Z:9492b6ec-d4c5-410e-b2e9-408e7a279870', + 'x-ms-ratelimit-remaining-subscription-writes': '1198', + 'x-ms-request-id': '5a97cf4a-28ff-40e4-bbdf-f29e120f682d', + 'x-ms-correlation-request-id': '5a97cf4a-28ff-40e4-bbdf-f29e120f682d', + 'x-ms-routing-request-id': 'WESTUS:20160421T032704Z:5a97cf4a-28ff-40e4-bbdf-f29e120f682d', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:17:39 GMT', + date: 'Thu, 21 Apr 2016 03:27:03 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') + .delete('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate9828?api-version=2016-02-01') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', + location: 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFOTgyOC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '9492b6ec-d4c5-410e-b2e9-408e7a279870', - 'x-ms-correlation-request-id': '9492b6ec-d4c5-410e-b2e9-408e7a279870', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171740Z:9492b6ec-d4c5-410e-b2e9-408e7a279870', + 'x-ms-ratelimit-remaining-subscription-writes': '1198', + 'x-ms-request-id': '5a97cf4a-28ff-40e4-bbdf-f29e120f682d', + 'x-ms-correlation-request-id': '5a97cf4a-28ff-40e4-bbdf-f29e120f682d', + 'x-ms-routing-request-id': 'WESTUS:20160421T032704Z:5a97cf4a-28ff-40e4-bbdf-f29e120f682d', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:17:39 GMT', + date: 'Thu, 21 Apr 2016 03:27:03 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') - .reply(200, "", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups?api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Storage-WestUS\",\"name\":\"Default-Storage-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-NorthCentralUS\",\"name\":\"Default-Web-NorthCentralUS\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-WestUS\",\"name\":\"Default-Web-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828\",\"name\":\"xplatTestGCreate9828\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Deleting\"}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', + 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': '4d44408f-d9ac-4d50-913c-358aa426e436', - 'x-ms-correlation-request-id': '4d44408f-d9ac-4d50-913c-358aa426e436', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171809Z:4d44408f-d9ac-4d50-913c-358aa426e436', + 'x-ms-ratelimit-remaining-subscription-reads': '14998', + 'x-ms-request-id': '80b77bc1-5329-45df-bac4-81936f86cd82', + 'x-ms-correlation-request-id': '80b77bc1-5329-45df-bac4-81936f86cd82', + 'x-ms-routing-request-id': 'WESTUS:20160421T032704Z:80b77bc1-5329-45df-bac4-81936f86cd82', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:18:09 GMT', + date: 'Thu, 21 Apr 2016 03:27:03 GMT', connection: 'close', - 'content-length': '0' }); + 'content-length': '816' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNDQ4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') - .reply(200, "", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups?api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Storage-WestUS\",\"name\":\"Default-Storage-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-NorthCentralUS\",\"name\":\"Default-Web-NorthCentralUS\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-WestUS\",\"name\":\"Default-Web-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828\",\"name\":\"xplatTestGCreate9828\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Deleting\"}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', + 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': '4d44408f-d9ac-4d50-913c-358aa426e436', - 'x-ms-correlation-request-id': '4d44408f-d9ac-4d50-913c-358aa426e436', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171809Z:4d44408f-d9ac-4d50-913c-358aa426e436', + 'x-ms-ratelimit-remaining-subscription-reads': '14998', + 'x-ms-request-id': '80b77bc1-5329-45df-bac4-81936f86cd82', + 'x-ms-correlation-request-id': '80b77bc1-5329-45df-bac4-81936f86cd82', + 'x-ms-routing-request-id': 'WESTUS:20160421T032704Z:80b77bc1-5329-45df-bac4-81936f86cd82', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:18:09 GMT', + date: 'Thu, 21 Apr 2016 03:27:03 GMT', connection: 'close', - 'content-length': '0' }); + 'content-length': '816' }); return result; }]]; - exports.randomTestIdsGenerated = function() { return ['xplatTestGCreate4486'];}; \ No newline at end of file + exports.randomTestIdsGenerated = function() { return ['xplatTestGCreate9828'];}; \ No newline at end of file diff --git a/test/recordings/arm-cli-group-tests/arm_group_create_should_create_a_group_with_a_named_deployment_from_a_template_uri_and_parameter_string.nock.js b/test/recordings/arm-cli-group-tests/arm_group_create_should_create_a_group_with_a_named_deployment_from_a_template_uri_and_parameter_string.nock.js index 501c12ea15..0eee256846 100644 --- a/test/recordings/arm-cli-group-tests/arm_group_create_should_create_a_group_with_a_named_deployment_from_a_template_uri_and_parameter_string.nock.js +++ b/test/recordings/arm-cli-group-tests/arm_group_create_should_create_a_group_with_a_named_deployment_from_a_template_uri_and_parameter_string.nock.js @@ -6,13 +6,13 @@ exports.getMockedProfile = function () { var newProfile = new profile.Profile(); newProfile.addSubscription(new profile.Subscription({ - id: '00977cdb-163f-435f-9c32-39ec8ae61f4d', - name: 'node', + id: '3ca49042-782a-4cc9-89b5-ee1b487fe115', + name: 'AzSdkCore1', user: { name: 'user@domain.example', type: 'user' }, - tenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47', + tenantId: '1449d5b7-8a83-47db-ae4c-9b03e888bad0', state: 'Enabled', registeredProviders: [], _eventsCount: '1', @@ -29,36 +29,36 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070?api-version=2016-02-01') - .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGCreate2070' could not be found.\"}}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate5808?api-version=2016-02-01') + .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGCreate5808' could not be found.\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-failure-cause': 'gateway', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': 'ea6af28c-10be-42f2-84d1-3f4b141431d1', - 'x-ms-correlation-request-id': 'ea6af28c-10be-42f2-84d1-3f4b141431d1', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171810Z:ea6af28c-10be-42f2-84d1-3f4b141431d1', + 'x-ms-ratelimit-remaining-subscription-reads': '14999', + 'x-ms-request-id': 'b9e87e86-3ec5-45ed-8fef-a87bd5aa975e', + 'x-ms-correlation-request-id': 'b9e87e86-3ec5-45ed-8fef-a87bd5aa975e', + 'x-ms-routing-request-id': 'WESTUS:20160421T032704Z:b9e87e86-3ec5-45ed-8fef-a87bd5aa975e', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:18:10 GMT', + date: 'Thu, 21 Apr 2016 03:27:03 GMT', connection: 'close', 'content-length': '112' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070?api-version=2016-02-01') - .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGCreate2070' could not be found.\"}}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate5808?api-version=2016-02-01') + .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGCreate5808' could not be found.\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-failure-cause': 'gateway', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': 'ea6af28c-10be-42f2-84d1-3f4b141431d1', - 'x-ms-correlation-request-id': 'ea6af28c-10be-42f2-84d1-3f4b141431d1', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171810Z:ea6af28c-10be-42f2-84d1-3f4b141431d1', + 'x-ms-ratelimit-remaining-subscription-reads': '14999', + 'x-ms-request-id': 'b9e87e86-3ec5-45ed-8fef-a87bd5aa975e', + 'x-ms-correlation-request-id': 'b9e87e86-3ec5-45ed-8fef-a87bd5aa975e', + 'x-ms-routing-request-id': 'WESTUS:20160421T032704Z:b9e87e86-3ec5-45ed-8fef-a87bd5aa975e', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:18:10 GMT', + date: 'Thu, 21 Apr 2016 03:27:03 GMT', connection: 'close', 'content-length': '112' }); return result; }, @@ -66,490 +66,282 @@ function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070\",\"name\":\"xplatTestGCreate2070\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate5808?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808\",\"name\":\"xplatTestGCreate5808\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '203', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-writes': '1198', - 'x-ms-request-id': '374d9766-ad59-499e-9082-54f7a61e2474', - 'x-ms-correlation-request-id': '374d9766-ad59-499e-9082-54f7a61e2474', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171811Z:374d9766-ad59-499e-9082-54f7a61e2474', + 'x-ms-ratelimit-remaining-subscription-writes': '1199', + 'x-ms-request-id': '99ac0123-579e-431d-86bf-d5b151940757', + 'x-ms-correlation-request-id': '99ac0123-579e-431d-86bf-d5b151940757', + 'x-ms-routing-request-id': 'WESTUS:20160421T032705Z:99ac0123-579e-431d-86bf-d5b151940757', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:18:11 GMT', + date: 'Thu, 21 Apr 2016 03:27:04 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070\",\"name\":\"xplatTestGCreate2070\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate5808?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808\",\"name\":\"xplatTestGCreate5808\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '203', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-writes': '1198', - 'x-ms-request-id': '374d9766-ad59-499e-9082-54f7a61e2474', - 'x-ms-correlation-request-id': '374d9766-ad59-499e-9082-54f7a61e2474', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171811Z:374d9766-ad59-499e-9082-54f7a61e2474', + 'x-ms-ratelimit-remaining-subscription-writes': '1199', + 'x-ms-request-id': '99ac0123-579e-431d-86bf-d5b151940757', + 'x-ms-correlation-request-id': '99ac0123-579e-431d-86bf-d5b151940757', + 'x-ms-routing-request-id': 'WESTUS:20160421T032705Z:99ac0123-579e-431d-86bf-d5b151940757', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:18:11 GMT', + date: 'Thu, 21 Apr 2016 03:27:04 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl/validate?api-version=2016-02-01', '*') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl\",\"name\":\"mydeptemplateUrl\",\"properties\":{\"templateLink\":{\"uri\":\"http://azuresdkcitest.blob.core.windows.net/azure-cli-test/arm-deployment-template.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-01-30T17:18:13.5107059Z\",\"duration\":\"PT0S\",\"correlationId\":\"59993929-abc4-47e3-8271-69696a3baa82\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate2070\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate2070\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"validatedResources\":[{\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"name\":\"xDeploymentTestHost5985\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"West US\",\"properties\":{\"name\":\"xDeploymentTestHost5985\",\"sku\":\"Basic\",\"workerSize\":\"0\",\"numberOfWorkers\":1}},{\"apiVersion\":\"2015-02-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"name\":\"xDeploymentTestSite854\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{\"hidden-related:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"xDeploymentTestSite854\",\"serverFarmId\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"}},{\"apiVersion\":\"2015-02-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/Sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"name\":\"xDeploymentTestSite854/MSDeploy\",\"type\":\"Microsoft.Web/sites/Extensions\",\"properties\":{\"packageUri\":\"https://auxmktplceprod.blob.core.windows.net/packages/StarterSite-modified.zip\",\"dbType\":\"None\",\"connectionString\":\"\",\"setParameters\":{\"Application Path\":\"xDeploymentTestSite854\"}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate2070\",\"name\":\"xDeploymentTestHost5985-xplatTestGCreate2070\",\"type\":\"microsoft.insights/autoscalesettings\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"profiles\":[{\"name\":\"Default\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"2\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT10M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":80.0},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT10M\"}},{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT1H\",\"timeAggregation\":\"Average\",\"operator\":\"LessThan\",\"threshold\":60.0},\"scaleAction\":{\"direction\":\"Decrease\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT1H\"}}]}],\"enabled\":false,\"name\":\"xDeploymentTestHost5985-xplatTestGCreate2070\",\"targetResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"name\":\"ServerErrors xDeploymentTestSite854\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"name\":\"ServerErrors xDeploymentTestSite854\",\"description\":\"xDeploymentTestSite854 has some server errors, status code 5xx.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"metricName\":\"Http5xx\"},\"operator\":\"GreaterThan\",\"threshold\":0.0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"name\":\"ForbiddenRequests xDeploymentTestSite854\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"name\":\"ForbiddenRequests xDeploymentTestSite854\",\"description\":\"xDeploymentTestSite854 has some requests that are forbidden, status code 403.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"metricName\":\"Http403\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"name\":\"CPUHigh xDeploymentTestHost5985\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"CPUHigh xDeploymentTestHost5985\",\"description\":\"The average CPU is high across all the instances of xDeploymentTestHost5985\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"metricName\":\"CpuPercentage\"},\"operator\":\"GreaterThan\",\"threshold\":90,\"windowSize\":\"PT15M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"name\":\"LongHttpQueue xDeploymentTestHost5985\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"LongHttpQueue xDeploymentTestHost5985\",\"description\":\"The HTTP queue for the instances of xDeploymentTestHost5985 has a large number of pending requests.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"metricName\":\"HttpQueueLength\"},\"operator\":\"GreaterThan\",\"threshold\":100.0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/components/xDeploymentTestSite854\",\"name\":\"xDeploymentTestSite854\",\"type\":\"microsoft.insights/components\",\"location\":\"Central US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"applicationId\":\"xDeploymentTestSite854\"}}]}}", { 'cache-control': 'no-cache', +.post('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate5808/providers/Microsoft.Resources/deployments/mydeptemplateUrl/validate?api-version=2016-02-01', '*') + .reply(200, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Resources/deployments/mydeptemplateUrl\",\"name\":\"mydeptemplateUrl\",\"properties\":{\"templateLink\":{\"uri\":\"http://azuresdkcitest.blob.core.windows.net/azure-cli-test/arm-deployment-template.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-04-21T03:27:06.5773153Z\",\"duration\":\"PT0S\",\"correlationId\":\"72d0ca6d-ce85-4ffb-b184-45e2a253db0e\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate5808\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xplatTestGCreate5808\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"validatedResources\":[{\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"name\":\"xDeploymentTestHost27666\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"West US\",\"properties\":{\"name\":\"xDeploymentTestHost27666\",\"sku\":\"Standard\",\"workerSize\":\"0\",\"numberOfWorkers\":1}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"name\":\"xDeploymentTestSite14863\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{\"hidden-related:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"xDeploymentTestSite14863\",\"serverFarmId\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"name\":\"xDeploymentTestSite14863/MSDeploy\",\"type\":\"Microsoft.Web/sites/Extensions\",\"properties\":{\"packageUri\":\"https://auxmktplceprod.blob.core.windows.net/packages/StarterSite-modified.zip\",\"dbType\":\"None\",\"connectionString\":\"\",\"setParameters\":{\"Application Path\":\"xDeploymentTestSite14863\"}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate5808\",\"name\":\"xDeploymentTestHost27666-xplatTestGCreate5808\",\"type\":\"microsoft.insights/autoscalesettings\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"profiles\":[{\"name\":\"Default\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"2\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT10M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":80.0},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT10M\"}},{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT1H\",\"timeAggregation\":\"Average\",\"operator\":\"LessThan\",\"threshold\":60.0},\"scaleAction\":{\"direction\":\"Decrease\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT1H\"}}]}],\"enabled\":false,\"name\":\"xDeploymentTestHost27666-xplatTestGCreate5808\",\"targetResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"name\":\"ServerErrors xDeploymentTestSite14863\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"name\":\"ServerErrors xDeploymentTestSite14863\",\"description\":\"xDeploymentTestSite14863 has some server errors, status code 5xx.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"metricName\":\"Http5xx\"},\"operator\":\"GreaterThan\",\"threshold\":0.0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"name\":\"ForbiddenRequests xDeploymentTestSite14863\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"name\":\"ForbiddenRequests xDeploymentTestSite14863\",\"description\":\"xDeploymentTestSite14863 has some requests that are forbidden, status code 403.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"metricName\":\"Http403\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"name\":\"CPUHigh xDeploymentTestHost27666\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"CPUHigh xDeploymentTestHost27666\",\"description\":\"The average CPU is high across all the instances of xDeploymentTestHost27666\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"metricName\":\"CpuPercentage\"},\"operator\":\"GreaterThan\",\"threshold\":90,\"windowSize\":\"PT15M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"name\":\"LongHttpQueue xDeploymentTestHost27666\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"LongHttpQueue xDeploymentTestHost27666\",\"description\":\"The HTTP queue for the instances of xDeploymentTestHost27666 has a large number of pending requests.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"metricName\":\"HttpQueueLength\"},\"operator\":\"GreaterThan\",\"threshold\":100.0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"name\":\"xDeploymentTestSite14863\",\"type\":\"microsoft.insights/components\",\"location\":\"Central US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"applicationId\":\"xDeploymentTestSite14863\"}}]}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '59993929-abc4-47e3-8271-69696a3baa82', - 'x-ms-correlation-request-id': '59993929-abc4-47e3-8271-69696a3baa82', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171814Z:59993929-abc4-47e3-8271-69696a3baa82', + 'x-ms-request-id': '72d0ca6d-ce85-4ffb-b184-45e2a253db0e', + 'x-ms-correlation-request-id': '72d0ca6d-ce85-4ffb-b184-45e2a253db0e', + 'x-ms-routing-request-id': 'WESTUS:20160421T032707Z:72d0ca6d-ce85-4ffb-b184-45e2a253db0e', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:18:13 GMT', + date: 'Thu, 21 Apr 2016 03:27:06 GMT', connection: 'close', - 'content-length': '15544' }); + 'content-length': '15683' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl/validate?api-version=2016-02-01', '*') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl\",\"name\":\"mydeptemplateUrl\",\"properties\":{\"templateLink\":{\"uri\":\"http://azuresdkcitest.blob.core.windows.net/azure-cli-test/arm-deployment-template.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-01-30T17:18:13.5107059Z\",\"duration\":\"PT0S\",\"correlationId\":\"59993929-abc4-47e3-8271-69696a3baa82\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate2070\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate2070\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"validatedResources\":[{\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"name\":\"xDeploymentTestHost5985\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"West US\",\"properties\":{\"name\":\"xDeploymentTestHost5985\",\"sku\":\"Basic\",\"workerSize\":\"0\",\"numberOfWorkers\":1}},{\"apiVersion\":\"2015-02-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"name\":\"xDeploymentTestSite854\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{\"hidden-related:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"xDeploymentTestSite854\",\"serverFarmId\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"}},{\"apiVersion\":\"2015-02-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/Sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"name\":\"xDeploymentTestSite854/MSDeploy\",\"type\":\"Microsoft.Web/sites/Extensions\",\"properties\":{\"packageUri\":\"https://auxmktplceprod.blob.core.windows.net/packages/StarterSite-modified.zip\",\"dbType\":\"None\",\"connectionString\":\"\",\"setParameters\":{\"Application Path\":\"xDeploymentTestSite854\"}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate2070\",\"name\":\"xDeploymentTestHost5985-xplatTestGCreate2070\",\"type\":\"microsoft.insights/autoscalesettings\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"profiles\":[{\"name\":\"Default\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"2\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT10M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":80.0},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT10M\"}},{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT1H\",\"timeAggregation\":\"Average\",\"operator\":\"LessThan\",\"threshold\":60.0},\"scaleAction\":{\"direction\":\"Decrease\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT1H\"}}]}],\"enabled\":false,\"name\":\"xDeploymentTestHost5985-xplatTestGCreate2070\",\"targetResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"name\":\"ServerErrors xDeploymentTestSite854\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"name\":\"ServerErrors xDeploymentTestSite854\",\"description\":\"xDeploymentTestSite854 has some server errors, status code 5xx.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"metricName\":\"Http5xx\"},\"operator\":\"GreaterThan\",\"threshold\":0.0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"name\":\"ForbiddenRequests xDeploymentTestSite854\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"name\":\"ForbiddenRequests xDeploymentTestSite854\",\"description\":\"xDeploymentTestSite854 has some requests that are forbidden, status code 403.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"metricName\":\"Http403\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"name\":\"CPUHigh xDeploymentTestHost5985\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"CPUHigh xDeploymentTestHost5985\",\"description\":\"The average CPU is high across all the instances of xDeploymentTestHost5985\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"metricName\":\"CpuPercentage\"},\"operator\":\"GreaterThan\",\"threshold\":90,\"windowSize\":\"PT15M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"name\":\"LongHttpQueue xDeploymentTestHost5985\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"LongHttpQueue xDeploymentTestHost5985\",\"description\":\"The HTTP queue for the instances of xDeploymentTestHost5985 has a large number of pending requests.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"metricName\":\"HttpQueueLength\"},\"operator\":\"GreaterThan\",\"threshold\":100.0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/components/xDeploymentTestSite854\",\"name\":\"xDeploymentTestSite854\",\"type\":\"microsoft.insights/components\",\"location\":\"Central US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"applicationId\":\"xDeploymentTestSite854\"}}]}}", { 'cache-control': 'no-cache', +.post('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate5808/providers/Microsoft.Resources/deployments/mydeptemplateUrl/validate?api-version=2016-02-01', '*') + .reply(200, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Resources/deployments/mydeptemplateUrl\",\"name\":\"mydeptemplateUrl\",\"properties\":{\"templateLink\":{\"uri\":\"http://azuresdkcitest.blob.core.windows.net/azure-cli-test/arm-deployment-template.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-04-21T03:27:06.5773153Z\",\"duration\":\"PT0S\",\"correlationId\":\"72d0ca6d-ce85-4ffb-b184-45e2a253db0e\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate5808\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xplatTestGCreate5808\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"validatedResources\":[{\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"name\":\"xDeploymentTestHost27666\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"West US\",\"properties\":{\"name\":\"xDeploymentTestHost27666\",\"sku\":\"Standard\",\"workerSize\":\"0\",\"numberOfWorkers\":1}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"name\":\"xDeploymentTestSite14863\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{\"hidden-related:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"xDeploymentTestSite14863\",\"serverFarmId\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"name\":\"xDeploymentTestSite14863/MSDeploy\",\"type\":\"Microsoft.Web/sites/Extensions\",\"properties\":{\"packageUri\":\"https://auxmktplceprod.blob.core.windows.net/packages/StarterSite-modified.zip\",\"dbType\":\"None\",\"connectionString\":\"\",\"setParameters\":{\"Application Path\":\"xDeploymentTestSite14863\"}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate5808\",\"name\":\"xDeploymentTestHost27666-xplatTestGCreate5808\",\"type\":\"microsoft.insights/autoscalesettings\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"profiles\":[{\"name\":\"Default\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"2\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT10M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":80.0},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT10M\"}},{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT1H\",\"timeAggregation\":\"Average\",\"operator\":\"LessThan\",\"threshold\":60.0},\"scaleAction\":{\"direction\":\"Decrease\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT1H\"}}]}],\"enabled\":false,\"name\":\"xDeploymentTestHost27666-xplatTestGCreate5808\",\"targetResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"name\":\"ServerErrors xDeploymentTestSite14863\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"name\":\"ServerErrors xDeploymentTestSite14863\",\"description\":\"xDeploymentTestSite14863 has some server errors, status code 5xx.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"metricName\":\"Http5xx\"},\"operator\":\"GreaterThan\",\"threshold\":0.0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"name\":\"ForbiddenRequests xDeploymentTestSite14863\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"name\":\"ForbiddenRequests xDeploymentTestSite14863\",\"description\":\"xDeploymentTestSite14863 has some requests that are forbidden, status code 403.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"metricName\":\"Http403\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"name\":\"CPUHigh xDeploymentTestHost27666\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"CPUHigh xDeploymentTestHost27666\",\"description\":\"The average CPU is high across all the instances of xDeploymentTestHost27666\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"metricName\":\"CpuPercentage\"},\"operator\":\"GreaterThan\",\"threshold\":90,\"windowSize\":\"PT15M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"name\":\"LongHttpQueue xDeploymentTestHost27666\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"LongHttpQueue xDeploymentTestHost27666\",\"description\":\"The HTTP queue for the instances of xDeploymentTestHost27666 has a large number of pending requests.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"metricName\":\"HttpQueueLength\"},\"operator\":\"GreaterThan\",\"threshold\":100.0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"name\":\"xDeploymentTestSite14863\",\"type\":\"microsoft.insights/components\",\"location\":\"Central US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"applicationId\":\"xDeploymentTestSite14863\"}}]}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '59993929-abc4-47e3-8271-69696a3baa82', - 'x-ms-correlation-request-id': '59993929-abc4-47e3-8271-69696a3baa82', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171814Z:59993929-abc4-47e3-8271-69696a3baa82', + 'x-ms-request-id': '72d0ca6d-ce85-4ffb-b184-45e2a253db0e', + 'x-ms-correlation-request-id': '72d0ca6d-ce85-4ffb-b184-45e2a253db0e', + 'x-ms-routing-request-id': 'WESTUS:20160421T032707Z:72d0ca6d-ce85-4ffb-b184-45e2a253db0e', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:18:13 GMT', + date: 'Thu, 21 Apr 2016 03:27:06 GMT', connection: 'close', - 'content-length': '15544' }); + 'content-length': '15683' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl\",\"name\":\"mydeptemplateUrl\",\"properties\":{\"templateLink\":{\"uri\":\"http://azuresdkcitest.blob.core.windows.net/azure-cli-test/arm-deployment-template.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-01-30T17:18:17.1798494Z\",\"duration\":\"PT1.1530369S\",\"correlationId\":\"ed1dcb45-f206-4693-b381-4b21bfcf068c\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate2070\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate2070\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}]}}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate5808/providers/Microsoft.Resources/deployments/mydeptemplateUrl?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Resources/deployments/mydeptemplateUrl\",\"name\":\"mydeptemplateUrl\",\"properties\":{\"templateLink\":{\"uri\":\"http://azuresdkcitest.blob.core.windows.net/azure-cli-test/arm-deployment-template.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-04-21T03:27:08.4610078Z\",\"duration\":\"PT0.6334733S\",\"correlationId\":\"30d90ca5-a667-45ee-905c-0e195ca1e0b5\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate5808\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xplatTestGCreate5808\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'azure-asyncoperation': 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl/operationStatuses/08587474325894509408?api-version=2016-02-01', + 'azure-asyncoperation': 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate5808/providers/Microsoft.Resources/deployments/mydeptemplateUrl/operationStatuses/08587403976576502631?api-version=2016-02-01', 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': 'ed1dcb45-f206-4693-b381-4b21bfcf068c', - 'x-ms-correlation-request-id': 'ed1dcb45-f206-4693-b381-4b21bfcf068c', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171817Z:ed1dcb45-f206-4693-b381-4b21bfcf068c', + 'x-ms-request-id': '30d90ca5-a667-45ee-905c-0e195ca1e0b5', + 'x-ms-correlation-request-id': '30d90ca5-a667-45ee-905c-0e195ca1e0b5', + 'x-ms-routing-request-id': 'WESTUS:20160421T032708Z:30d90ca5-a667-45ee-905c-0e195ca1e0b5', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:18:16 GMT', + date: 'Thu, 21 Apr 2016 03:27:08 GMT', connection: 'close', - 'content-length': '5379' }); + 'content-length': '5435' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl\",\"name\":\"mydeptemplateUrl\",\"properties\":{\"templateLink\":{\"uri\":\"http://azuresdkcitest.blob.core.windows.net/azure-cli-test/arm-deployment-template.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-01-30T17:18:17.1798494Z\",\"duration\":\"PT1.1530369S\",\"correlationId\":\"ed1dcb45-f206-4693-b381-4b21bfcf068c\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate2070\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate2070\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}]}}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate5808/providers/Microsoft.Resources/deployments/mydeptemplateUrl?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Resources/deployments/mydeptemplateUrl\",\"name\":\"mydeptemplateUrl\",\"properties\":{\"templateLink\":{\"uri\":\"http://azuresdkcitest.blob.core.windows.net/azure-cli-test/arm-deployment-template.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-04-21T03:27:08.4610078Z\",\"duration\":\"PT0.6334733S\",\"correlationId\":\"30d90ca5-a667-45ee-905c-0e195ca1e0b5\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate5808\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xplatTestGCreate5808\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'azure-asyncoperation': 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl/operationStatuses/08587474325894509408?api-version=2016-02-01', + 'azure-asyncoperation': 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate5808/providers/Microsoft.Resources/deployments/mydeptemplateUrl/operationStatuses/08587403976576502631?api-version=2016-02-01', 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': 'ed1dcb45-f206-4693-b381-4b21bfcf068c', - 'x-ms-correlation-request-id': 'ed1dcb45-f206-4693-b381-4b21bfcf068c', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171817Z:ed1dcb45-f206-4693-b381-4b21bfcf068c', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:18:16 GMT', - connection: 'close', - 'content-length': '5379' }); - return result; }, -function (nock) { -var result = -nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl/operationStatuses/08587474325894509408?api-version=2016-02-01') - .reply(200, "{\"status\":\"Running\"}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '3f3c35e3-60f4-401a-8729-0f7aaeb29ad4', - 'x-ms-correlation-request-id': '3f3c35e3-60f4-401a-8729-0f7aaeb29ad4', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171847Z:3f3c35e3-60f4-401a-8729-0f7aaeb29ad4', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:18:47 GMT', - connection: 'close', - 'content-length': '20' }); - return result; }, -function (nock) { -var result = -nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl/operationStatuses/08587474325894509408?api-version=2016-02-01') - .reply(200, "{\"status\":\"Running\"}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '3f3c35e3-60f4-401a-8729-0f7aaeb29ad4', - 'x-ms-correlation-request-id': '3f3c35e3-60f4-401a-8729-0f7aaeb29ad4', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171847Z:3f3c35e3-60f4-401a-8729-0f7aaeb29ad4', + 'x-ms-request-id': '30d90ca5-a667-45ee-905c-0e195ca1e0b5', + 'x-ms-correlation-request-id': '30d90ca5-a667-45ee-905c-0e195ca1e0b5', + 'x-ms-routing-request-id': 'WESTUS:20160421T032708Z:30d90ca5-a667-45ee-905c-0e195ca1e0b5', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:18:47 GMT', + date: 'Thu, 21 Apr 2016 03:27:08 GMT', connection: 'close', - 'content-length': '20' }); + 'content-length': '5435' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl/operationStatuses/08587474325894509408?api-version=2016-02-01') - .reply(200, "{\"status\":\"Running\"}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups?api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Storage-WestUS\",\"name\":\"Default-Storage-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-NorthCentralUS\",\"name\":\"Default-Web-NorthCentralUS\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-WestUS\",\"name\":\"Default-Web-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808\",\"name\":\"xplatTestGCreate5808\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828\",\"name\":\"xplatTestGCreate9828\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Deleting\"}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': 'e745310e-cfe7-4b09-8d85-f815530684ef', - 'x-ms-correlation-request-id': 'e745310e-cfe7-4b09-8d85-f815530684ef', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171918Z:e745310e-cfe7-4b09-8d85-f815530684ef', + 'x-ms-request-id': '7dfea870-df01-46d7-8b62-df5eae2f92d2', + 'x-ms-correlation-request-id': '7dfea870-df01-46d7-8b62-df5eae2f92d2', + 'x-ms-routing-request-id': 'WESTUS:20160421T032708Z:7dfea870-df01-46d7-8b62-df5eae2f92d2', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:19:18 GMT', + date: 'Thu, 21 Apr 2016 03:27:08 GMT', connection: 'close', - 'content-length': '20' }); + 'content-length': '1020' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl/operationStatuses/08587474325894509408?api-version=2016-02-01') - .reply(200, "{\"status\":\"Running\"}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups?api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Storage-WestUS\",\"name\":\"Default-Storage-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-NorthCentralUS\",\"name\":\"Default-Web-NorthCentralUS\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-WestUS\",\"name\":\"Default-Web-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808\",\"name\":\"xplatTestGCreate5808\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate9828\",\"name\":\"xplatTestGCreate9828\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Deleting\"}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': 'e745310e-cfe7-4b09-8d85-f815530684ef', - 'x-ms-correlation-request-id': 'e745310e-cfe7-4b09-8d85-f815530684ef', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171918Z:e745310e-cfe7-4b09-8d85-f815530684ef', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:19:18 GMT', - connection: 'close', - 'content-length': '20' }); - return result; }, -function (nock) { -var result = -nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl/operationStatuses/08587474325894509408?api-version=2016-02-01') - .reply(200, "{\"status\":\"Succeeded\"}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': 'fc0020ce-7692-4963-b04c-c31bcc3a4872', - 'x-ms-correlation-request-id': 'fc0020ce-7692-4963-b04c-c31bcc3a4872', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171949Z:fc0020ce-7692-4963-b04c-c31bcc3a4872', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:19:48 GMT', - connection: 'close', - 'content-length': '22' }); - return result; }, -function (nock) { -var result = -nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl/operationStatuses/08587474325894509408?api-version=2016-02-01') - .reply(200, "{\"status\":\"Succeeded\"}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': 'fc0020ce-7692-4963-b04c-c31bcc3a4872', - 'x-ms-correlation-request-id': 'fc0020ce-7692-4963-b04c-c31bcc3a4872', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171949Z:fc0020ce-7692-4963-b04c-c31bcc3a4872', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:19:48 GMT', - connection: 'close', - 'content-length': '22' }); - return result; }, -function (nock) { -var result = -nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl?api-version=2016-02-01') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl\",\"name\":\"mydeptemplateUrl\",\"properties\":{\"templateLink\":{\"uri\":\"http://azuresdkcitest.blob.core.windows.net/azure-cli-test/arm-deployment-template.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T17:19:19.6692183Z\",\"duration\":\"PT1M3.6424058S\",\"correlationId\":\"ed1dcb45-f206-4693-b381-4b21bfcf068c\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate2070\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate2070\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate2070\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': 'b85f63b7-4796-4395-9238-f5b7d54cbbfb', - 'x-ms-correlation-request-id': 'b85f63b7-4796-4395-9238-f5b7d54cbbfb', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171950Z:b85f63b7-4796-4395-9238-f5b7d54cbbfb', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:19:49 GMT', - connection: 'close', - 'content-length': '6117' }); - return result; }, -function (nock) { -var result = -nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl?api-version=2016-02-01') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl\",\"name\":\"mydeptemplateUrl\",\"properties\":{\"templateLink\":{\"uri\":\"http://azuresdkcitest.blob.core.windows.net/azure-cli-test/arm-deployment-template.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T17:19:19.6692183Z\",\"duration\":\"PT1M3.6424058S\",\"correlationId\":\"ed1dcb45-f206-4693-b381-4b21bfcf068c\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate2070\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate2070\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate2070\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': 'b85f63b7-4796-4395-9238-f5b7d54cbbfb', - 'x-ms-correlation-request-id': 'b85f63b7-4796-4395-9238-f5b7d54cbbfb', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171950Z:b85f63b7-4796-4395-9238-f5b7d54cbbfb', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:19:49 GMT', - connection: 'close', - 'content-length': '6117' }); - return result; }, -function (nock) { -var result = -nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups?api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/armclistorageGroup7836\",\"name\":\"armclistorageGroup7836\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-SQL-WestUS\",\"name\":\"Default-SQL-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Storage-SoutheastAsia\",\"name\":\"Default-Storage-SoutheastAsia\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Storage-WestUS\",\"name\":\"Default-Storage-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Web-WestUS\",\"name\":\"Default-Web-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/testfoo\",\"name\":\"testfoo\",\"location\":\"westus\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"\",\"tag3\":\"value3\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup2553\",\"name\":\"xDeploymentTestGroup2553\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup3957\",\"name\":\"xDeploymentTestGroup3957\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup7360\",\"name\":\"xDeploymentTestGroup7360\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatResourceGroupTagGrp3170\",\"name\":\"xplatResourceGroupTagGrp3170\",\"location\":\"westus\",\"tags\":{\"xplatResourceGroupTag2965\":\"\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatResourceGroupTagGrp5704\",\"name\":\"xplatResourceGroupTagGrp5704\",\"location\":\"westus\",\"tags\":{\"xplatResourceGroupTag6449\":\"fooValue\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070\",\"name\":\"xplatTestGCreate2070\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2869\",\"name\":\"xplatTestGCreate2869\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2986\",\"name\":\"xplatTestGCreate2986\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4144\",\"name\":\"xplatTestGCreate4144\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate6907\",\"name\":\"xplatTestGCreate6907\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate8685\",\"name\":\"xplatTestGCreate8685\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow1867\",\"name\":\"xplatTestGrpShow1867\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow3526\",\"name\":\"xplatTestGrpShow3526\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow9919\",\"name\":\"xplatTestGrpShow9919\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource1133\",\"name\":\"xTestResource1133\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource1351\",\"name\":\"xTestResource1351\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource22148\",\"name\":\"xTestResource22148\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource256\",\"name\":\"xTestResource256\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource2633\",\"name\":\"xTestResource2633\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource270\",\"name\":\"xTestResource270\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource3091\",\"name\":\"xTestResource3091\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource4407\",\"name\":\"xTestResource4407\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource5856\",\"name\":\"xTestResource5856\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource6449\",\"name\":\"xTestResource6449\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource6976\",\"name\":\"xTestResource6976\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource7036\",\"name\":\"xTestResource7036\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource7107\",\"name\":\"xTestResource7107\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource8014\",\"name\":\"xTestResource8014\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource9085\",\"name\":\"xTestResource9085\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource9821\",\"name\":\"xTestResource9821\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/ZiTest\",\"name\":\"ZiTest\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}]}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '0a94a6db-9a24-44a1-82fb-e15252a1f7b0', - 'x-ms-correlation-request-id': '0a94a6db-9a24-44a1-82fb-e15252a1f7b0', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171951Z:0a94a6db-9a24-44a1-82fb-e15252a1f7b0', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:19:50 GMT', - connection: 'close', - 'content-length': '7555' }); - return result; }, -function (nock) { -var result = -nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups?api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/armclistorageGroup7836\",\"name\":\"armclistorageGroup7836\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-SQL-WestUS\",\"name\":\"Default-SQL-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Storage-SoutheastAsia\",\"name\":\"Default-Storage-SoutheastAsia\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Storage-WestUS\",\"name\":\"Default-Storage-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Web-WestUS\",\"name\":\"Default-Web-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/testfoo\",\"name\":\"testfoo\",\"location\":\"westus\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"\",\"tag3\":\"value3\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup2553\",\"name\":\"xDeploymentTestGroup2553\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup3957\",\"name\":\"xDeploymentTestGroup3957\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup7360\",\"name\":\"xDeploymentTestGroup7360\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatResourceGroupTagGrp3170\",\"name\":\"xplatResourceGroupTagGrp3170\",\"location\":\"westus\",\"tags\":{\"xplatResourceGroupTag2965\":\"\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatResourceGroupTagGrp5704\",\"name\":\"xplatResourceGroupTagGrp5704\",\"location\":\"westus\",\"tags\":{\"xplatResourceGroupTag6449\":\"fooValue\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070\",\"name\":\"xplatTestGCreate2070\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2869\",\"name\":\"xplatTestGCreate2869\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2986\",\"name\":\"xplatTestGCreate2986\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4144\",\"name\":\"xplatTestGCreate4144\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate6907\",\"name\":\"xplatTestGCreate6907\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate8685\",\"name\":\"xplatTestGCreate8685\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow1867\",\"name\":\"xplatTestGrpShow1867\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow3526\",\"name\":\"xplatTestGrpShow3526\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow9919\",\"name\":\"xplatTestGrpShow9919\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource1133\",\"name\":\"xTestResource1133\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource1351\",\"name\":\"xTestResource1351\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource22148\",\"name\":\"xTestResource22148\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource256\",\"name\":\"xTestResource256\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource2633\",\"name\":\"xTestResource2633\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource270\",\"name\":\"xTestResource270\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource3091\",\"name\":\"xTestResource3091\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource4407\",\"name\":\"xTestResource4407\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource5856\",\"name\":\"xTestResource5856\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource6449\",\"name\":\"xTestResource6449\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource6976\",\"name\":\"xTestResource6976\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource7036\",\"name\":\"xTestResource7036\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource7107\",\"name\":\"xTestResource7107\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource8014\",\"name\":\"xTestResource8014\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource9085\",\"name\":\"xTestResource9085\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource9821\",\"name\":\"xTestResource9821\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/ZiTest\",\"name\":\"ZiTest\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}]}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '0a94a6db-9a24-44a1-82fb-e15252a1f7b0', - 'x-ms-correlation-request-id': '0a94a6db-9a24-44a1-82fb-e15252a1f7b0', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171951Z:0a94a6db-9a24-44a1-82fb-e15252a1f7b0', + 'x-ms-request-id': '7dfea870-df01-46d7-8b62-df5eae2f92d2', + 'x-ms-correlation-request-id': '7dfea870-df01-46d7-8b62-df5eae2f92d2', + 'x-ms-routing-request-id': 'WESTUS:20160421T032708Z:7dfea870-df01-46d7-8b62-df5eae2f92d2', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:19:50 GMT', + date: 'Thu, 21 Apr 2016 03:27:08 GMT', connection: 'close', - 'content-length': '7555' }); + 'content-length': '1020' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/?api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl\",\"name\":\"mydeptemplateUrl\",\"properties\":{\"templateLink\":{\"uri\":\"http://azuresdkcitest.blob.core.windows.net/azure-cli-test/arm-deployment-template.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T17:19:19.6692183Z\",\"duration\":\"PT1M3.6424058S\",\"correlationId\":\"ed1dcb45-f206-4693-b381-4b21bfcf068c\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate2070\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate2070\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate2070\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}]}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate5808/providers/Microsoft.Resources/deployments/?api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Resources/deployments/mydeptemplateUrl\",\"name\":\"mydeptemplateUrl\",\"properties\":{\"templateLink\":{\"uri\":\"http://azuresdkcitest.blob.core.windows.net/azure-cli-test/arm-deployment-template.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-04-21T03:27:08.4610078Z\",\"duration\":\"PT0.6334733S\",\"correlationId\":\"30d90ca5-a667-45ee-905c-0e195ca1e0b5\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate5808\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xplatTestGCreate5808\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': 'e8e6540c-1e1d-4546-a376-a5721e104f71', - 'x-ms-correlation-request-id': 'e8e6540c-1e1d-4546-a376-a5721e104f71', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171951Z:e8e6540c-1e1d-4546-a376-a5721e104f71', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': '86e4aa85-deea-4987-af22-8b78c77e85f3', + 'x-ms-correlation-request-id': '86e4aa85-deea-4987-af22-8b78c77e85f3', + 'x-ms-routing-request-id': 'WESTUS:20160421T032708Z:86e4aa85-deea-4987-af22-8b78c77e85f3', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:19:51 GMT', + date: 'Thu, 21 Apr 2016 03:27:08 GMT', connection: 'close', - 'content-length': '6129' }); + 'content-length': '5447' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/?api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Resources/deployments/mydeptemplateUrl\",\"name\":\"mydeptemplateUrl\",\"properties\":{\"templateLink\":{\"uri\":\"http://azuresdkcitest.blob.core.windows.net/azure-cli-test/arm-deployment-template.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T17:19:19.6692183Z\",\"duration\":\"PT1M3.6424058S\",\"correlationId\":\"ed1dcb45-f206-4693-b381-4b21bfcf068c\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate2070\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xplatTestGCreate2070\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2070/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xplatTestGCreate2070\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}]}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate5808/providers/Microsoft.Resources/deployments/?api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Resources/deployments/mydeptemplateUrl\",\"name\":\"mydeptemplateUrl\",\"properties\":{\"templateLink\":{\"uri\":\"http://azuresdkcitest.blob.core.windows.net/azure-cli-test/arm-deployment-template.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-04-21T03:27:08.4610078Z\",\"duration\":\"PT0.6334733S\",\"correlationId\":\"30d90ca5-a667-45ee-905c-0e195ca1e0b5\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xplatTestGCreate5808\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xplatTestGCreate5808\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate5808/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': 'e8e6540c-1e1d-4546-a376-a5721e104f71', - 'x-ms-correlation-request-id': 'e8e6540c-1e1d-4546-a376-a5721e104f71', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171951Z:e8e6540c-1e1d-4546-a376-a5721e104f71', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': '86e4aa85-deea-4987-af22-8b78c77e85f3', + 'x-ms-correlation-request-id': '86e4aa85-deea-4987-af22-8b78c77e85f3', + 'x-ms-routing-request-id': 'WESTUS:20160421T032708Z:86e4aa85-deea-4987-af22-8b78c77e85f3', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:19:51 GMT', + date: 'Thu, 21 Apr 2016 03:27:08 GMT', connection: 'close', - 'content-length': '6129' }); + 'content-length': '5447' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .delete('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070?api-version=2016-02-01') + .delete('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate5808?api-version=2016-02-01') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', + location: 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNTgwOC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', 'retry-after': '15', 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '9212f6fb-871c-4f61-b0af-1be77c5faefd', - 'x-ms-correlation-request-id': '9212f6fb-871c-4f61-b0af-1be77c5faefd', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171953Z:9212f6fb-871c-4f61-b0af-1be77c5faefd', + 'x-ms-request-id': 'b44ce5c6-9093-41fc-b294-b861a4792641', + 'x-ms-correlation-request-id': 'b44ce5c6-9093-41fc-b294-b861a4792641', + 'x-ms-routing-request-id': 'WESTUS:20160421T032709Z:b44ce5c6-9093-41fc-b294-b861a4792641', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:19:53 GMT', + date: 'Thu, 21 Apr 2016 03:27:08 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .delete('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate2070?api-version=2016-02-01') + .delete('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate5808?api-version=2016-02-01') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', + location: 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNTgwOC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', 'retry-after': '15', 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '9212f6fb-871c-4f61-b0af-1be77c5faefd', - 'x-ms-correlation-request-id': '9212f6fb-871c-4f61-b0af-1be77c5faefd', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T171953Z:9212f6fb-871c-4f61-b0af-1be77c5faefd', + 'x-ms-request-id': 'b44ce5c6-9093-41fc-b294-b861a4792641', + 'x-ms-correlation-request-id': 'b44ce5c6-9093-41fc-b294-b861a4792641', + 'x-ms-routing-request-id': 'WESTUS:20160421T032709Z:b44ce5c6-9093-41fc-b294-b861a4792641', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:19:53 GMT', + date: 'Thu, 21 Apr 2016 03:27:08 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') - .reply(202, "", { 'cache-control': 'no-cache', - pragma: 'no-cache', - expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', - 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': '85381106-944b-4eeb-b3b8-4fc26746d444', - 'x-ms-correlation-request-id': '85381106-944b-4eeb-b3b8-4fc26746d444', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172024Z:85381106-944b-4eeb-b3b8-4fc26746d444', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:20:23 GMT', - connection: 'close', - 'content-length': '0' }); - return result; }, -function (nock) { -var result = -nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNTgwOC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', - 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': '85381106-944b-4eeb-b3b8-4fc26746d444', - 'x-ms-correlation-request-id': '85381106-944b-4eeb-b3b8-4fc26746d444', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172024Z:85381106-944b-4eeb-b3b8-4fc26746d444', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:20:23 GMT', - connection: 'close', - 'content-length': '0' }); - return result; }, -function (nock) { -var result = -nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') - .reply(202, "", { 'cache-control': 'no-cache', - pragma: 'no-cache', - expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', - 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': '1bc48596-1ff4-4986-a32d-8e2078edae18', - 'x-ms-correlation-request-id': '1bc48596-1ff4-4986-a32d-8e2078edae18', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172054Z:1bc48596-1ff4-4986-a32d-8e2078edae18', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:20:54 GMT', - connection: 'close', - 'content-length': '0' }); - return result; }, -function (nock) { -var result = -nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') - .reply(202, "", { 'cache-control': 'no-cache', - pragma: 'no-cache', - expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', - 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': '1bc48596-1ff4-4986-a32d-8e2078edae18', - 'x-ms-correlation-request-id': '1bc48596-1ff4-4986-a32d-8e2078edae18', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172054Z:1bc48596-1ff4-4986-a32d-8e2078edae18', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:20:54 GMT', - connection: 'close', - 'content-length': '0' }); - return result; }, -function (nock) { -var result = -nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') - .reply(202, "", { 'cache-control': 'no-cache', - pragma: 'no-cache', - expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', + location: 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNTgwOC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', 'retry-after': '15', 'x-ms-ratelimit-remaining-subscription-reads': '14996', - 'x-ms-request-id': '1033bb93-2fd4-4e9b-8a7e-ceed9a21fba3', - 'x-ms-correlation-request-id': '1033bb93-2fd4-4e9b-8a7e-ceed9a21fba3', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172124Z:1033bb93-2fd4-4e9b-8a7e-ceed9a21fba3', + 'x-ms-request-id': '9d3a1b27-1c78-465f-816b-93979b6677ac', + 'x-ms-correlation-request-id': '9d3a1b27-1c78-465f-816b-93979b6677ac', + 'x-ms-routing-request-id': 'WESTUS:20160421T032739Z:9d3a1b27-1c78-465f-816b-93979b6677ac', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:21:24 GMT', + date: 'Thu, 21 Apr 2016 03:27:39 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNTgwOC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', + location: 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNTgwOC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', 'retry-after': '15', 'x-ms-ratelimit-remaining-subscription-reads': '14996', - 'x-ms-request-id': '1033bb93-2fd4-4e9b-8a7e-ceed9a21fba3', - 'x-ms-correlation-request-id': '1033bb93-2fd4-4e9b-8a7e-ceed9a21fba3', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172124Z:1033bb93-2fd4-4e9b-8a7e-ceed9a21fba3', + 'x-ms-request-id': '9d3a1b27-1c78-465f-816b-93979b6677ac', + 'x-ms-correlation-request-id': '9d3a1b27-1c78-465f-816b-93979b6677ac', + 'x-ms-routing-request-id': 'WESTUS:20160421T032739Z:9d3a1b27-1c78-465f-816b-93979b6677ac', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:21:24 GMT', + date: 'Thu, 21 Apr 2016 03:27:39 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNTgwOC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') .reply(200, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': 'fddb8d72-8309-457e-b559-f6e489f2a472', - 'x-ms-correlation-request-id': 'fddb8d72-8309-457e-b559-f6e489f2a472', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172155Z:fddb8d72-8309-457e-b559-f6e489f2a472', + 'x-ms-ratelimit-remaining-subscription-reads': '14996', + 'x-ms-request-id': '1c815e6d-7a12-4c18-894f-3af8c17b62f6', + 'x-ms-correlation-request-id': '1c815e6d-7a12-4c18-894f-3af8c17b62f6', + 'x-ms-routing-request-id': 'WESTUS:20160421T032809Z:1c815e6d-7a12-4c18-894f-3af8c17b62f6', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:21:54 GMT', + date: 'Thu, 21 Apr 2016 03:28:08 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFMjA3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNTgwOC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') .reply(200, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': 'fddb8d72-8309-457e-b559-f6e489f2a472', - 'x-ms-correlation-request-id': 'fddb8d72-8309-457e-b559-f6e489f2a472', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172155Z:fddb8d72-8309-457e-b559-f6e489f2a472', + 'x-ms-ratelimit-remaining-subscription-reads': '14996', + 'x-ms-request-id': '1c815e6d-7a12-4c18-894f-3af8c17b62f6', + 'x-ms-correlation-request-id': '1c815e6d-7a12-4c18-894f-3af8c17b62f6', + 'x-ms-routing-request-id': 'WESTUS:20160421T032809Z:1c815e6d-7a12-4c18-894f-3af8c17b62f6', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:21:54 GMT', + date: 'Thu, 21 Apr 2016 03:28:08 GMT', connection: 'close', 'content-length': '0' }); return result; }]]; - exports.randomTestIdsGenerated = function() { return ['xplatTestGCreate2070'];}; \ No newline at end of file + exports.randomTestIdsGenerated = function() { return ['xplatTestGCreate5808'];}; \ No newline at end of file diff --git a/test/recordings/arm-cli-group-tests/arm_group_create_should_create_empty_group.nock.js b/test/recordings/arm-cli-group-tests/arm_group_create_should_create_empty_group.nock.js index 635652cf71..ff1693f9c5 100644 --- a/test/recordings/arm-cli-group-tests/arm_group_create_should_create_empty_group.nock.js +++ b/test/recordings/arm-cli-group-tests/arm_group_create_should_create_empty_group.nock.js @@ -6,13 +6,13 @@ exports.getMockedProfile = function () { var newProfile = new profile.Profile(); newProfile.addSubscription(new profile.Subscription({ - id: '00977cdb-163f-435f-9c32-39ec8ae61f4d', - name: 'node', + id: '3ca49042-782a-4cc9-89b5-ee1b487fe115', + name: 'AzSdkCore1', user: { name: 'user@domain.example', type: 'user' }, - tenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47', + tenantId: '1449d5b7-8a83-47db-ae4c-9b03e888bad0', state: 'Enabled', registeredProviders: [], _eventsCount: '1', @@ -29,36 +29,36 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate9976?api-version=2016-02-01') - .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGCreate9976' could not be found.\"}}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate6485?api-version=2016-02-01') + .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGCreate6485' could not be found.\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-failure-cause': 'gateway', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '2da11865-9538-4669-9424-fa9e0c7b31f1', - 'x-ms-correlation-request-id': '2da11865-9538-4669-9424-fa9e0c7b31f1', - 'x-ms-routing-request-id': 'WESTUS:20160130T171351Z:2da11865-9538-4669-9424-fa9e0c7b31f1', + 'x-ms-ratelimit-remaining-subscription-reads': '14998', + 'x-ms-request-id': '4381b6fe-ecef-42bd-ae29-21272a27cd05', + 'x-ms-correlation-request-id': '4381b6fe-ecef-42bd-ae29-21272a27cd05', + 'x-ms-routing-request-id': 'WESTUS:20160421T032557Z:4381b6fe-ecef-42bd-ae29-21272a27cd05', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:13:50 GMT', + date: 'Thu, 21 Apr 2016 03:25:56 GMT', connection: 'close', 'content-length': '112' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate9976?api-version=2016-02-01') - .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGCreate9976' could not be found.\"}}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate6485?api-version=2016-02-01') + .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGCreate6485' could not be found.\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-failure-cause': 'gateway', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '2da11865-9538-4669-9424-fa9e0c7b31f1', - 'x-ms-correlation-request-id': '2da11865-9538-4669-9424-fa9e0c7b31f1', - 'x-ms-routing-request-id': 'WESTUS:20160130T171351Z:2da11865-9538-4669-9424-fa9e0c7b31f1', + 'x-ms-ratelimit-remaining-subscription-reads': '14998', + 'x-ms-request-id': '4381b6fe-ecef-42bd-ae29-21272a27cd05', + 'x-ms-correlation-request-id': '4381b6fe-ecef-42bd-ae29-21272a27cd05', + 'x-ms-routing-request-id': 'WESTUS:20160421T032557Z:4381b6fe-ecef-42bd-ae29-21272a27cd05', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:13:50 GMT', + date: 'Thu, 21 Apr 2016 03:25:56 GMT', connection: 'close', 'content-length': '112' }); return result; }, @@ -66,174 +66,174 @@ function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate9976?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate9976\",\"name\":\"xplatTestGCreate9976\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate6485?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate6485\",\"name\":\"xplatTestGCreate6485\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '203', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': 'cfb3d6c8-aae0-43e9-bb5c-085db3b56b87', - 'x-ms-correlation-request-id': 'cfb3d6c8-aae0-43e9-bb5c-085db3b56b87', - 'x-ms-routing-request-id': 'WESTUS:20160130T171352Z:cfb3d6c8-aae0-43e9-bb5c-085db3b56b87', + 'x-ms-ratelimit-remaining-subscription-writes': '1198', + 'x-ms-request-id': '607c30a2-fff2-4329-b9c4-98a684968154', + 'x-ms-correlation-request-id': '607c30a2-fff2-4329-b9c4-98a684968154', + 'x-ms-routing-request-id': 'WESTUS:20160421T032557Z:607c30a2-fff2-4329-b9c4-98a684968154', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:13:52 GMT', + date: 'Thu, 21 Apr 2016 03:25:57 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate9976?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate9976\",\"name\":\"xplatTestGCreate9976\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate6485?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate6485\",\"name\":\"xplatTestGCreate6485\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '203', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': 'cfb3d6c8-aae0-43e9-bb5c-085db3b56b87', - 'x-ms-correlation-request-id': 'cfb3d6c8-aae0-43e9-bb5c-085db3b56b87', - 'x-ms-routing-request-id': 'WESTUS:20160130T171352Z:cfb3d6c8-aae0-43e9-bb5c-085db3b56b87', + 'x-ms-ratelimit-remaining-subscription-writes': '1198', + 'x-ms-request-id': '607c30a2-fff2-4329-b9c4-98a684968154', + 'x-ms-correlation-request-id': '607c30a2-fff2-4329-b9c4-98a684968154', + 'x-ms-routing-request-id': 'WESTUS:20160421T032557Z:607c30a2-fff2-4329-b9c4-98a684968154', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:13:52 GMT', + date: 'Thu, 21 Apr 2016 03:25:57 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups?api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/armclistorageGroup7836\",\"name\":\"armclistorageGroup7836\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-SQL-WestUS\",\"name\":\"Default-SQL-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Storage-SoutheastAsia\",\"name\":\"Default-Storage-SoutheastAsia\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Storage-WestUS\",\"name\":\"Default-Storage-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Web-WestUS\",\"name\":\"Default-Web-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/testfoo\",\"name\":\"testfoo\",\"location\":\"westus\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"\",\"tag3\":\"value3\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup2553\",\"name\":\"xDeploymentTestGroup2553\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup3957\",\"name\":\"xDeploymentTestGroup3957\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup7360\",\"name\":\"xDeploymentTestGroup7360\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatResourceGroupTagGrp3170\",\"name\":\"xplatResourceGroupTagGrp3170\",\"location\":\"westus\",\"tags\":{\"xplatResourceGroupTag2965\":\"\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatResourceGroupTagGrp5704\",\"name\":\"xplatResourceGroupTagGrp5704\",\"location\":\"westus\",\"tags\":{\"xplatResourceGroupTag6449\":\"fooValue\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2869\",\"name\":\"xplatTestGCreate2869\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2986\",\"name\":\"xplatTestGCreate2986\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4144\",\"name\":\"xplatTestGCreate4144\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate6907\",\"name\":\"xplatTestGCreate6907\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate8685\",\"name\":\"xplatTestGCreate8685\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate9976\",\"name\":\"xplatTestGCreate9976\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow1867\",\"name\":\"xplatTestGrpShow1867\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow3526\",\"name\":\"xplatTestGrpShow3526\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow9919\",\"name\":\"xplatTestGrpShow9919\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource1133\",\"name\":\"xTestResource1133\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource1351\",\"name\":\"xTestResource1351\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource22148\",\"name\":\"xTestResource22148\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource256\",\"name\":\"xTestResource256\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource2633\",\"name\":\"xTestResource2633\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource270\",\"name\":\"xTestResource270\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource3091\",\"name\":\"xTestResource3091\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource4407\",\"name\":\"xTestResource4407\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource5856\",\"name\":\"xTestResource5856\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource6449\",\"name\":\"xTestResource6449\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource6976\",\"name\":\"xTestResource6976\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource7036\",\"name\":\"xTestResource7036\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource7107\",\"name\":\"xTestResource7107\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource8014\",\"name\":\"xTestResource8014\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource9085\",\"name\":\"xTestResource9085\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource9821\",\"name\":\"xTestResource9821\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/ZiTest\",\"name\":\"ZiTest\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}]}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups?api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Storage-WestUS\",\"name\":\"Default-Storage-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-NorthCentralUS\",\"name\":\"Default-Web-NorthCentralUS\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-WestUS\",\"name\":\"Default-Web-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/testrg\",\"name\":\"testrg\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate6485\",\"name\":\"xplatTestGCreate6485\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '5c745bd8-7610-4ec8-b094-0b410fa758a9', - 'x-ms-correlation-request-id': '5c745bd8-7610-4ec8-b094-0b410fa758a9', - 'x-ms-routing-request-id': 'WESTUS:20160130T171353Z:5c745bd8-7610-4ec8-b094-0b410fa758a9', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': 'a8536ea1-6f53-432a-b447-86b20b2ea81d', + 'x-ms-correlation-request-id': 'a8536ea1-6f53-432a-b447-86b20b2ea81d', + 'x-ms-routing-request-id': 'WESTUS:20160421T032558Z:a8536ea1-6f53-432a-b447-86b20b2ea81d', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:13:53 GMT', + date: 'Thu, 21 Apr 2016 03:25:58 GMT', connection: 'close', - 'content-length': '7555' }); + 'content-length': '982' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups?api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/armclistorageGroup7836\",\"name\":\"armclistorageGroup7836\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-SQL-WestUS\",\"name\":\"Default-SQL-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Storage-SoutheastAsia\",\"name\":\"Default-Storage-SoutheastAsia\",\"location\":\"southeastasia\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Storage-WestUS\",\"name\":\"Default-Storage-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/Default-Web-WestUS\",\"name\":\"Default-Web-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/testfoo\",\"name\":\"testfoo\",\"location\":\"westus\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"\",\"tag3\":\"value3\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup2553\",\"name\":\"xDeploymentTestGroup2553\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup3957\",\"name\":\"xDeploymentTestGroup3957\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup7360\",\"name\":\"xDeploymentTestGroup7360\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatResourceGroupTagGrp3170\",\"name\":\"xplatResourceGroupTagGrp3170\",\"location\":\"westus\",\"tags\":{\"xplatResourceGroupTag2965\":\"\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatResourceGroupTagGrp5704\",\"name\":\"xplatResourceGroupTagGrp5704\",\"location\":\"westus\",\"tags\":{\"xplatResourceGroupTag6449\":\"fooValue\"},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2869\",\"name\":\"xplatTestGCreate2869\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate2986\",\"name\":\"xplatTestGCreate2986\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate4144\",\"name\":\"xplatTestGCreate4144\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate6907\",\"name\":\"xplatTestGCreate6907\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate8685\",\"name\":\"xplatTestGCreate8685\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGCreate9976\",\"name\":\"xplatTestGCreate9976\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow1867\",\"name\":\"xplatTestGrpShow1867\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow3526\",\"name\":\"xplatTestGrpShow3526\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow9919\",\"name\":\"xplatTestGrpShow9919\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource1133\",\"name\":\"xTestResource1133\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource1351\",\"name\":\"xTestResource1351\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource22148\",\"name\":\"xTestResource22148\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource256\",\"name\":\"xTestResource256\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource2633\",\"name\":\"xTestResource2633\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource270\",\"name\":\"xTestResource270\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource3091\",\"name\":\"xTestResource3091\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource4407\",\"name\":\"xTestResource4407\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource5856\",\"name\":\"xTestResource5856\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource6449\",\"name\":\"xTestResource6449\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource6976\",\"name\":\"xTestResource6976\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource7036\",\"name\":\"xTestResource7036\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource7107\",\"name\":\"xTestResource7107\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource8014\",\"name\":\"xTestResource8014\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource9085\",\"name\":\"xTestResource9085\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xTestResource9821\",\"name\":\"xTestResource9821\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/ZiTest\",\"name\":\"ZiTest\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}]}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups?api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Storage-WestUS\",\"name\":\"Default-Storage-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-NorthCentralUS\",\"name\":\"Default-Web-NorthCentralUS\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/Default-Web-WestUS\",\"name\":\"Default-Web-WestUS\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/testrg\",\"name\":\"testrg\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Deleting\"}},{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGCreate6485\",\"name\":\"xplatTestGCreate6485\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '5c745bd8-7610-4ec8-b094-0b410fa758a9', - 'x-ms-correlation-request-id': '5c745bd8-7610-4ec8-b094-0b410fa758a9', - 'x-ms-routing-request-id': 'WESTUS:20160130T171353Z:5c745bd8-7610-4ec8-b094-0b410fa758a9', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': 'a8536ea1-6f53-432a-b447-86b20b2ea81d', + 'x-ms-correlation-request-id': 'a8536ea1-6f53-432a-b447-86b20b2ea81d', + 'x-ms-routing-request-id': 'WESTUS:20160421T032558Z:a8536ea1-6f53-432a-b447-86b20b2ea81d', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:13:53 GMT', + date: 'Thu, 21 Apr 2016 03:25:58 GMT', connection: 'close', - 'content-length': '7555' }); + 'content-length': '982' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .delete('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate9976?api-version=2016-02-01') + .delete('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate6485?api-version=2016-02-01') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFOTk3Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', + location: 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNjQ4NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', 'retry-after': '15', 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '95f1c7cf-7aa2-49ee-8536-110c31eeafc2', - 'x-ms-correlation-request-id': '95f1c7cf-7aa2-49ee-8536-110c31eeafc2', - 'x-ms-routing-request-id': 'WESTUS:20160130T171354Z:95f1c7cf-7aa2-49ee-8536-110c31eeafc2', + 'x-ms-request-id': '1b198b57-b7fd-42d2-9aab-d9798f8fa652', + 'x-ms-correlation-request-id': '1b198b57-b7fd-42d2-9aab-d9798f8fa652', + 'x-ms-routing-request-id': 'WESTUS:20160421T032559Z:1b198b57-b7fd-42d2-9aab-d9798f8fa652', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:13:54 GMT', + date: 'Thu, 21 Apr 2016 03:25:59 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .delete('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGCreate9976?api-version=2016-02-01') + .delete('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGCreate6485?api-version=2016-02-01') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFOTk3Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', + location: 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNjQ4NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', 'retry-after': '15', 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '95f1c7cf-7aa2-49ee-8536-110c31eeafc2', - 'x-ms-correlation-request-id': '95f1c7cf-7aa2-49ee-8536-110c31eeafc2', - 'x-ms-routing-request-id': 'WESTUS:20160130T171354Z:95f1c7cf-7aa2-49ee-8536-110c31eeafc2', + 'x-ms-request-id': '1b198b57-b7fd-42d2-9aab-d9798f8fa652', + 'x-ms-correlation-request-id': '1b198b57-b7fd-42d2-9aab-d9798f8fa652', + 'x-ms-routing-request-id': 'WESTUS:20160421T032559Z:1b198b57-b7fd-42d2-9aab-d9798f8fa652', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:13:54 GMT', + date: 'Thu, 21 Apr 2016 03:25:59 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFOTk3Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNjQ4NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFOTk3Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', + location: 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNjQ4NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '564f71af-7b16-4c87-8880-50c88025f358', - 'x-ms-correlation-request-id': '564f71af-7b16-4c87-8880-50c88025f358', - 'x-ms-routing-request-id': 'WESTUS:20160130T171424Z:564f71af-7b16-4c87-8880-50c88025f358', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': '27162ad2-53a6-4f2a-91dd-e0ca3b73e574', + 'x-ms-correlation-request-id': '27162ad2-53a6-4f2a-91dd-e0ca3b73e574', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032629Z:27162ad2-53a6-4f2a-91dd-e0ca3b73e574', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:14:23 GMT', + date: 'Thu, 21 Apr 2016 03:26:29 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFOTk3Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNjQ4NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFOTk3Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', + location: 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNjQ4NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': '564f71af-7b16-4c87-8880-50c88025f358', - 'x-ms-correlation-request-id': '564f71af-7b16-4c87-8880-50c88025f358', - 'x-ms-routing-request-id': 'WESTUS:20160130T171424Z:564f71af-7b16-4c87-8880-50c88025f358', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': '27162ad2-53a6-4f2a-91dd-e0ca3b73e574', + 'x-ms-correlation-request-id': '27162ad2-53a6-4f2a-91dd-e0ca3b73e574', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032629Z:27162ad2-53a6-4f2a-91dd-e0ca3b73e574', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:14:23 GMT', + date: 'Thu, 21 Apr 2016 03:26:29 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFOTk3Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNjQ4NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') .reply(200, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': 'beaecfae-0609-4298-b404-ed5ca2b1035b', - 'x-ms-correlation-request-id': 'beaecfae-0609-4298-b404-ed5ca2b1035b', - 'x-ms-routing-request-id': 'WESTUS:20160130T171455Z:beaecfae-0609-4298-b404-ed5ca2b1035b', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': 'a002bcaa-efa3-46ed-8812-c1f5625dabf1', + 'x-ms-correlation-request-id': 'a002bcaa-efa3-46ed-8812-c1f5625dabf1', + 'x-ms-routing-request-id': 'WESTUS:20160421T032700Z:a002bcaa-efa3-46ed-8812-c1f5625dabf1', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:14:55 GMT', + date: 'Thu, 21 Apr 2016 03:26:59 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFOTk3Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHQ1JFQVRFNjQ4NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') .reply(200, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14999', - 'x-ms-request-id': 'beaecfae-0609-4298-b404-ed5ca2b1035b', - 'x-ms-correlation-request-id': 'beaecfae-0609-4298-b404-ed5ca2b1035b', - 'x-ms-routing-request-id': 'WESTUS:20160130T171455Z:beaecfae-0609-4298-b404-ed5ca2b1035b', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': 'a002bcaa-efa3-46ed-8812-c1f5625dabf1', + 'x-ms-correlation-request-id': 'a002bcaa-efa3-46ed-8812-c1f5625dabf1', + 'x-ms-routing-request-id': 'WESTUS:20160421T032700Z:a002bcaa-efa3-46ed-8812-c1f5625dabf1', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:14:55 GMT', + date: 'Thu, 21 Apr 2016 03:26:59 GMT', connection: 'close', 'content-length': '0' }); return result; }]]; - exports.randomTestIdsGenerated = function() { return ['xplatTestGCreate9976'];}; \ No newline at end of file + exports.randomTestIdsGenerated = function() { return ['xplatTestGCreate6485'];}; \ No newline at end of file diff --git a/test/recordings/arm-cli-group-tests/arm_group_log_show_should_fail_when_an_invalid_deployment_name_is_provided.nock.js b/test/recordings/arm-cli-group-tests/arm_group_log_show_should_fail_when_an_invalid_deployment_name_is_provided.nock.js index fd9a4c61a1..edbd8bcde5 100644 --- a/test/recordings/arm-cli-group-tests/arm_group_log_show_should_fail_when_an_invalid_deployment_name_is_provided.nock.js +++ b/test/recordings/arm-cli-group-tests/arm_group_log_show_should_fail_when_an_invalid_deployment_name_is_provided.nock.js @@ -6,13 +6,13 @@ exports.getMockedProfile = function () { var newProfile = new profile.Profile(); newProfile.addSubscription(new profile.Subscription({ - id: '00977cdb-163f-435f-9c32-39ec8ae61f4d', - name: 'node', + id: '3ca49042-782a-4cc9-89b5-ee1b487fe115', + name: 'AzSdkCore1', user: { name: 'user@domain.example', type: 'user' }, - tenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47', + tenantId: '1449d5b7-8a83-47db-ae4c-9b03e888bad0', state: 'Enabled', registeredProviders: [], _eventsCount: '1', @@ -29,36 +29,36 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/random_deployment_name?api-version=2016-02-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/random_deployment_name?api-version=2016-02-01') .reply(404, "{\"error\":{\"code\":\"DeploymentNotFound\",\"message\":\"Deployment 'random_deployment_name' could not be found.\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-failure-cause': 'gateway', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': '0d48275f-ee24-4f20-8009-b099e23463b5', - 'x-ms-correlation-request-id': '0d48275f-ee24-4f20-8009-b099e23463b5', - 'x-ms-routing-request-id': 'WESTUS:20160130T204522Z:0d48275f-ee24-4f20-8009-b099e23463b5', + 'x-ms-ratelimit-remaining-subscription-reads': '14998', + 'x-ms-request-id': '43631144-d911-45dc-b884-f56be177229c', + 'x-ms-correlation-request-id': '43631144-d911-45dc-b884-f56be177229c', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032944Z:43631144-d911-45dc-b884-f56be177229c', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:22 GMT', + date: 'Thu, 21 Apr 2016 03:29:44 GMT', connection: 'close', 'content-length': '107' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/random_deployment_name?api-version=2016-02-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/random_deployment_name?api-version=2016-02-01') .reply(404, "{\"error\":{\"code\":\"DeploymentNotFound\",\"message\":\"Deployment 'random_deployment_name' could not be found.\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-failure-cause': 'gateway', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': '0d48275f-ee24-4f20-8009-b099e23463b5', - 'x-ms-correlation-request-id': '0d48275f-ee24-4f20-8009-b099e23463b5', - 'x-ms-routing-request-id': 'WESTUS:20160130T204522Z:0d48275f-ee24-4f20-8009-b099e23463b5', + 'x-ms-ratelimit-remaining-subscription-reads': '14998', + 'x-ms-request-id': '43631144-d911-45dc-b884-f56be177229c', + 'x-ms-correlation-request-id': '43631144-d911-45dc-b884-f56be177229c', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032944Z:43631144-d911-45dc-b884-f56be177229c', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:22 GMT', + date: 'Thu, 21 Apr 2016 03:29:44 GMT', connection: 'close', 'content-length': '107' }); return result; }]]; \ No newline at end of file diff --git a/test/recordings/arm-cli-group-tests/arm_group_log_show_should_fail_when_an_invalid_resource_group_is_provided.nock.js b/test/recordings/arm-cli-group-tests/arm_group_log_show_should_fail_when_an_invalid_resource_group_is_provided.nock.js index 2b7d7c64dc..6c2e7d6b3d 100644 --- a/test/recordings/arm-cli-group-tests/arm_group_log_show_should_fail_when_an_invalid_resource_group_is_provided.nock.js +++ b/test/recordings/arm-cli-group-tests/arm_group_log_show_should_fail_when_an_invalid_resource_group_is_provided.nock.js @@ -6,13 +6,13 @@ exports.getMockedProfile = function () { var newProfile = new profile.Profile(); newProfile.addSubscription(new profile.Subscription({ - id: '00977cdb-163f-435f-9c32-39ec8ae61f4d', - name: 'node', + id: '3ca49042-782a-4cc9-89b5-ee1b487fe115', + name: 'AzSdkCore1', user: { name: 'user@domain.example', type: 'user' }, - tenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47', + tenantId: '1449d5b7-8a83-47db-ae4c-9b03e888bad0', state: 'Enabled', registeredProviders: [], _eventsCount: '1', @@ -29,36 +29,36 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/random_group_name/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/random_group_name/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'random_group_name' could not be found.\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-failure-cause': 'gateway', - 'x-ms-ratelimit-remaining-subscription-reads': '14992', - 'x-ms-request-id': 'ea1218ee-19ae-4d81-b0f8-f3370e4548d2', - 'x-ms-correlation-request-id': 'ea1218ee-19ae-4d81-b0f8-f3370e4548d2', - 'x-ms-routing-request-id': 'WESTUS:20160130T204522Z:ea1218ee-19ae-4d81-b0f8-f3370e4548d2', + 'x-ms-ratelimit-remaining-subscription-reads': '14999', + 'x-ms-request-id': 'f4a5817d-78f4-4781-af8c-2f2ffa88bca4', + 'x-ms-correlation-request-id': 'f4a5817d-78f4-4781-af8c-2f2ffa88bca4', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032943Z:f4a5817d-78f4-4781-af8c-2f2ffa88bca4', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:21 GMT', + date: 'Thu, 21 Apr 2016 03:29:43 GMT', connection: 'close', 'content-length': '109' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/random_group_name/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/random_group_name/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'random_group_name' could not be found.\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-failure-cause': 'gateway', - 'x-ms-ratelimit-remaining-subscription-reads': '14992', - 'x-ms-request-id': 'ea1218ee-19ae-4d81-b0f8-f3370e4548d2', - 'x-ms-correlation-request-id': 'ea1218ee-19ae-4d81-b0f8-f3370e4548d2', - 'x-ms-routing-request-id': 'WESTUS:20160130T204522Z:ea1218ee-19ae-4d81-b0f8-f3370e4548d2', + 'x-ms-ratelimit-remaining-subscription-reads': '14999', + 'x-ms-request-id': 'f4a5817d-78f4-4781-af8c-2f2ffa88bca4', + 'x-ms-correlation-request-id': 'f4a5817d-78f4-4781-af8c-2f2ffa88bca4', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032943Z:f4a5817d-78f4-4781-af8c-2f2ffa88bca4', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:21 GMT', + date: 'Thu, 21 Apr 2016 03:29:43 GMT', connection: 'close', 'content-length': '109' }); return result; }]]; \ No newline at end of file diff --git a/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_all_the_operations.nock.js b/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_all_the_operations.nock.js index db285e83b0..bac67165ef 100644 --- a/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_all_the_operations.nock.js +++ b/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_all_the_operations.nock.js @@ -6,13 +6,13 @@ exports.getMockedProfile = function () { var newProfile = new profile.Profile(); newProfile.addSubscription(new profile.Subscription({ - id: '00977cdb-163f-435f-9c32-39ec8ae61f4d', - name: 'node', + id: '3ca49042-782a-4cc9-89b5-ee1b487fe115', + name: 'AzSdkCore1', user: { name: 'user@domain.example', type: 'user' }, - tenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47', + tenantId: '1449d5b7-8a83-47db-ae4c-9b03e888bad0', state: 'Enabled', registeredProviders: [], _eventsCount: '1', @@ -29,36 +29,36 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112?api-version=2016-02-01') - .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xDeploymentTestGroup8112' could not be found.\"}}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771?api-version=2016-02-01') + .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xDeploymentTestGroup8771' could not be found.\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-failure-cause': 'gateway', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': '9e713a8a-b21a-45b1-a7b9-89ea1d6e0031', - 'x-ms-correlation-request-id': '9e713a8a-b21a-45b1-a7b9-89ea1d6e0031', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T204407Z:9e713a8a-b21a-45b1-a7b9-89ea1d6e0031', + 'x-ms-ratelimit-remaining-subscription-reads': '14996', + 'x-ms-request-id': '53076db8-f908-4c32-a2b7-cc45d833c2a5', + 'x-ms-correlation-request-id': '53076db8-f908-4c32-a2b7-cc45d833c2a5', + 'x-ms-routing-request-id': 'WESTUS:20160421T032912Z:53076db8-f908-4c32-a2b7-cc45d833c2a5', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:44:06 GMT', + date: 'Thu, 21 Apr 2016 03:29:11 GMT', connection: 'close', 'content-length': '116' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112?api-version=2016-02-01') - .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xDeploymentTestGroup8112' could not be found.\"}}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771?api-version=2016-02-01') + .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xDeploymentTestGroup8771' could not be found.\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-failure-cause': 'gateway', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': '9e713a8a-b21a-45b1-a7b9-89ea1d6e0031', - 'x-ms-correlation-request-id': '9e713a8a-b21a-45b1-a7b9-89ea1d6e0031', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T204407Z:9e713a8a-b21a-45b1-a7b9-89ea1d6e0031', + 'x-ms-ratelimit-remaining-subscription-reads': '14996', + 'x-ms-request-id': '53076db8-f908-4c32-a2b7-cc45d833c2a5', + 'x-ms-correlation-request-id': '53076db8-f908-4c32-a2b7-cc45d833c2a5', + 'x-ms-routing-request-id': 'WESTUS:20160421T032912Z:53076db8-f908-4c32-a2b7-cc45d833c2a5', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:44:06 GMT', + date: 'Thu, 21 Apr 2016 03:29:11 GMT', connection: 'close', 'content-length': '116' }); return result; }, @@ -66,326 +66,298 @@ function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112\",\"name\":\"xDeploymentTestGroup8112\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771\",\"name\":\"xDeploymentTestGroup8771\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '211', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '01ecaa51-4b50-48b6-9f5f-03de8f3c7742', - 'x-ms-correlation-request-id': '01ecaa51-4b50-48b6-9f5f-03de8f3c7742', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T204408Z:01ecaa51-4b50-48b6-9f5f-03de8f3c7742', + 'x-ms-ratelimit-remaining-subscription-writes': '1198', + 'x-ms-request-id': 'c433860d-c796-4e3d-9013-4c70d3816195', + 'x-ms-correlation-request-id': 'c433860d-c796-4e3d-9013-4c70d3816195', + 'x-ms-routing-request-id': 'WESTUS:20160421T032912Z:c433860d-c796-4e3d-9013-4c70d3816195', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:44:07 GMT', + date: 'Thu, 21 Apr 2016 03:29:11 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112\",\"name\":\"xDeploymentTestGroup8112\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771\",\"name\":\"xDeploymentTestGroup8771\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '211', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '01ecaa51-4b50-48b6-9f5f-03de8f3c7742', - 'x-ms-correlation-request-id': '01ecaa51-4b50-48b6-9f5f-03de8f3c7742', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T204408Z:01ecaa51-4b50-48b6-9f5f-03de8f3c7742', + 'x-ms-ratelimit-remaining-subscription-writes': '1198', + 'x-ms-request-id': 'c433860d-c796-4e3d-9013-4c70d3816195', + 'x-ms-correlation-request-id': 'c433860d-c796-4e3d-9013-4c70d3816195', + 'x-ms-routing-request-id': 'WESTUS:20160421T032912Z:c433860d-c796-4e3d-9013-4c70d3816195', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:44:07 GMT', + date: 'Thu, 21 Apr 2016 03:29:11 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/validate?api-version=2016-02-01', '*') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"name\":\"Deploy15629\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-01-30T20:44:08.859196Z\",\"duration\":\"PT0S\",\"correlationId\":\"4c4dbf15-f4ee-45d3-af11-1e9bd677df7d\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"validatedResources\":[{\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"name\":\"xDeploymentTestHost5985\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"West US\",\"properties\":{\"name\":\"xDeploymentTestHost5985\",\"sku\":\"Basic\",\"workerSize\":\"0\",\"numberOfWorkers\":1}},{\"apiVersion\":\"2015-02-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"name\":\"xDeploymentTestSite854\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{\"hidden-related:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"xDeploymentTestSite854\",\"serverFarmId\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"}},{\"apiVersion\":\"2015-02-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"name\":\"xDeploymentTestSite854/MSDeploy\",\"type\":\"Microsoft.Web/sites/Extensions\",\"properties\":{\"packageUri\":\"https://auxmktplceprod.blob.core.windows.net/packages/StarterSite-modified.zip\",\"dbType\":\"None\",\"connectionString\":\"\",\"setParameters\":{\"Application Path\":\"xDeploymentTestSite854\"}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"name\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"type\":\"microsoft.insights/autoscalesettings\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"profiles\":[{\"name\":\"Default\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"2\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT10M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":80},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT10M\"}},{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT1H\",\"timeAggregation\":\"Average\",\"operator\":\"LessThan\",\"threshold\":60},\"scaleAction\":{\"direction\":\"Decrease\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT1H\"}}]}],\"enabled\":false,\"name\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"targetResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"name\":\"ServerErrors xDeploymentTestSite854\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"name\":\"ServerErrors xDeploymentTestSite854\",\"description\":\"xDeploymentTestSite854 has some server errors, status code 5xx.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"metricName\":\"Http5xx\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"name\":\"ForbiddenRequests xDeploymentTestSite854\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"name\":\"ForbiddenRequests xDeploymentTestSite854\",\"description\":\"xDeploymentTestSite854 has some requests that are forbidden, status code 403.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"metricName\":\"Http403\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"name\":\"CPUHigh xDeploymentTestHost5985\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"CPUHigh xDeploymentTestHost5985\",\"description\":\"The average CPU is high across all the instances of xDeploymentTestHost5985\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"metricName\":\"CpuPercentage\"},\"operator\":\"GreaterThan\",\"threshold\":90,\"windowSize\":\"PT15M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"name\":\"LongHttpQueue xDeploymentTestHost5985\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"LongHttpQueue xDeploymentTestHost5985\",\"description\":\"The HTTP queue for the instances of xDeploymentTestHost5985 has a large number of pending requests.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"metricName\":\"HttpQueueLength\"},\"operator\":\"GreaterThan\",\"threshold\":100,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"name\":\"xDeploymentTestSite854\",\"type\":\"microsoft.insights/components\",\"location\":\"Central US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"applicationId\":\"xDeploymentTestSite854\"}}]}}", { 'cache-control': 'no-cache', +.post('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/validate?api-version=2016-02-01', '*') + .reply(200, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"name\":\"Deploy17756\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-04-21T03:29:13.9450197Z\",\"duration\":\"PT0S\",\"correlationId\":\"6633fa8e-bcb4-4900-821d-4be8e054f4f5\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"validatedResources\":[{\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"name\":\"xDeploymentTestHost27666\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"West US\",\"properties\":{\"name\":\"xDeploymentTestHost27666\",\"sku\":\"Standard\",\"workerSize\":\"0\",\"numberOfWorkers\":1}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"name\":\"xDeploymentTestSite14863\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{\"hidden-related:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"xDeploymentTestSite14863\",\"serverFarmId\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"name\":\"xDeploymentTestSite14863/MSDeploy\",\"type\":\"Microsoft.Web/sites/Extensions\",\"properties\":{\"packageUri\":\"https://auxmktplceprod.blob.core.windows.net/packages/StarterSite-modified.zip\",\"dbType\":\"None\",\"connectionString\":\"\",\"setParameters\":{\"Application Path\":\"xDeploymentTestSite14863\"}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"name\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"type\":\"microsoft.insights/autoscalesettings\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"profiles\":[{\"name\":\"Default\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"2\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT10M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":80},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT10M\"}},{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT1H\",\"timeAggregation\":\"Average\",\"operator\":\"LessThan\",\"threshold\":60},\"scaleAction\":{\"direction\":\"Decrease\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT1H\"}}]}],\"enabled\":false,\"name\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"targetResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"name\":\"ServerErrors xDeploymentTestSite14863\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"name\":\"ServerErrors xDeploymentTestSite14863\",\"description\":\"xDeploymentTestSite14863 has some server errors, status code 5xx.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"metricName\":\"Http5xx\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"name\":\"ForbiddenRequests xDeploymentTestSite14863\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"name\":\"ForbiddenRequests xDeploymentTestSite14863\",\"description\":\"xDeploymentTestSite14863 has some requests that are forbidden, status code 403.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"metricName\":\"Http403\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"name\":\"CPUHigh xDeploymentTestHost27666\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"CPUHigh xDeploymentTestHost27666\",\"description\":\"The average CPU is high across all the instances of xDeploymentTestHost27666\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"metricName\":\"CpuPercentage\"},\"operator\":\"GreaterThan\",\"threshold\":90,\"windowSize\":\"PT15M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"name\":\"LongHttpQueue xDeploymentTestHost27666\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"LongHttpQueue xDeploymentTestHost27666\",\"description\":\"The HTTP queue for the instances of xDeploymentTestHost27666 has a large number of pending requests.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"metricName\":\"HttpQueueLength\"},\"operator\":\"GreaterThan\",\"threshold\":100,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"name\":\"xDeploymentTestSite14863\",\"type\":\"microsoft.insights/components\",\"location\":\"Central US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"applicationId\":\"xDeploymentTestSite14863\"}}]}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-ratelimit-remaining-subscription-writes': '1198', - 'x-ms-request-id': '4c4dbf15-f4ee-45d3-af11-1e9bd677df7d', - 'x-ms-correlation-request-id': '4c4dbf15-f4ee-45d3-af11-1e9bd677df7d', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T204409Z:4c4dbf15-f4ee-45d3-af11-1e9bd677df7d', + 'x-ms-request-id': '6633fa8e-bcb4-4900-821d-4be8e054f4f5', + 'x-ms-correlation-request-id': '6633fa8e-bcb4-4900-821d-4be8e054f4f5', + 'x-ms-routing-request-id': 'WESTUS:20160421T032914Z:6633fa8e-bcb4-4900-821d-4be8e054f4f5', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:44:09 GMT', + date: 'Thu, 21 Apr 2016 03:29:13 GMT', connection: 'close', - 'content-length': '15601' }); + 'content-length': '15741' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.post('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/validate?api-version=2016-02-01', '*') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"name\":\"Deploy15629\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-01-30T20:44:08.859196Z\",\"duration\":\"PT0S\",\"correlationId\":\"4c4dbf15-f4ee-45d3-af11-1e9bd677df7d\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"validatedResources\":[{\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"name\":\"xDeploymentTestHost5985\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"West US\",\"properties\":{\"name\":\"xDeploymentTestHost5985\",\"sku\":\"Basic\",\"workerSize\":\"0\",\"numberOfWorkers\":1}},{\"apiVersion\":\"2015-02-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"name\":\"xDeploymentTestSite854\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{\"hidden-related:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"xDeploymentTestSite854\",\"serverFarmId\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"}},{\"apiVersion\":\"2015-02-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"name\":\"xDeploymentTestSite854/MSDeploy\",\"type\":\"Microsoft.Web/sites/Extensions\",\"properties\":{\"packageUri\":\"https://auxmktplceprod.blob.core.windows.net/packages/StarterSite-modified.zip\",\"dbType\":\"None\",\"connectionString\":\"\",\"setParameters\":{\"Application Path\":\"xDeploymentTestSite854\"}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"name\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"type\":\"microsoft.insights/autoscalesettings\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"profiles\":[{\"name\":\"Default\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"2\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT10M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":80},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT10M\"}},{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT1H\",\"timeAggregation\":\"Average\",\"operator\":\"LessThan\",\"threshold\":60},\"scaleAction\":{\"direction\":\"Decrease\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT1H\"}}]}],\"enabled\":false,\"name\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"targetResourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"name\":\"ServerErrors xDeploymentTestSite854\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"name\":\"ServerErrors xDeploymentTestSite854\",\"description\":\"xDeploymentTestSite854 has some server errors, status code 5xx.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"metricName\":\"Http5xx\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"name\":\"ForbiddenRequests xDeploymentTestSite854\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"name\":\"ForbiddenRequests xDeploymentTestSite854\",\"description\":\"xDeploymentTestSite854 has some requests that are forbidden, status code 403.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"metricName\":\"Http403\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"name\":\"CPUHigh xDeploymentTestHost5985\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"CPUHigh xDeploymentTestHost5985\",\"description\":\"The average CPU is high across all the instances of xDeploymentTestHost5985\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"metricName\":\"CpuPercentage\"},\"operator\":\"GreaterThan\",\"threshold\":90,\"windowSize\":\"PT15M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"name\":\"LongHttpQueue xDeploymentTestHost5985\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\":\"Resource\"},\"properties\":{\"name\":\"LongHttpQueue xDeploymentTestHost5985\",\"description\":\"The HTTP queue for the instances of xDeploymentTestHost5985 has a large number of pending requests.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"metricName\":\"HttpQueueLength\"},\"operator\":\"GreaterThan\",\"threshold\":100,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"apiVersion\":\"2014-04-01\",\"dependsOn\":[\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"name\":\"xDeploymentTestSite854\",\"type\":\"microsoft.insights/components\",\"location\":\"Central US\",\"tags\":{\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\":\"Resource\"},\"properties\":{\"applicationId\":\"xDeploymentTestSite854\"}}]}}", { 'cache-control': 'no-cache', +.post('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/validate?api-version=2016-02-01', '*') + .reply(200, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"name\":\"Deploy17756\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-04-21T03:29:13.9450197Z\",\"duration\":\"PT0S\",\"correlationId\":\"6633fa8e-bcb4-4900-821d-4be8e054f4f5\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"validatedResources\":[{\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"name\":\"xDeploymentTestHost27666\",\"type\":\"Microsoft.Web/serverfarms\",\"location\":\"West US\",\"properties\":{\"name\":\"xDeploymentTestHost27666\",\"sku\":\"Standard\",\"workerSize\":\"0\",\"numberOfWorkers\":1}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"name\":\"xDeploymentTestSite14863\",\"type\":\"Microsoft.Web/sites\",\"location\":\"West US\",\"tags\":{\"hidden-related:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"xDeploymentTestSite14863\",\"serverFarmId\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2015-02-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"name\":\"xDeploymentTestSite14863/MSDeploy\",\"type\":\"Microsoft.Web/sites/Extensions\",\"properties\":{\"packageUri\":\"https://auxmktplceprod.blob.core.windows.net/packages/StarterSite-modified.zip\",\"dbType\":\"None\",\"connectionString\":\"\",\"setParameters\":{\"Application Path\":\"xDeploymentTestSite14863\"}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"name\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"type\":\"microsoft.insights/autoscalesettings\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"profiles\":[{\"name\":\"Default\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"2\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT10M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":80},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT10M\"}},{\"metricTrigger\":{\"metricName\":\"CpuPercentage\",\"metricResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT1H\",\"timeAggregation\":\"Average\",\"operator\":\"LessThan\",\"threshold\":60},\"scaleAction\":{\"direction\":\"Decrease\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT1H\"}}]}],\"enabled\":false,\"name\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"targetResourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"name\":\"ServerErrors xDeploymentTestSite14863\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"name\":\"ServerErrors xDeploymentTestSite14863\",\"description\":\"xDeploymentTestSite14863 has some server errors, status code 5xx.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"metricName\":\"Http5xx\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"name\":\"ForbiddenRequests xDeploymentTestSite14863\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"name\":\"ForbiddenRequests xDeploymentTestSite14863\",\"description\":\"xDeploymentTestSite14863 has some requests that are forbidden, status code 403.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"metricName\":\"Http403\"},\"operator\":\"GreaterThan\",\"threshold\":0,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"name\":\"CPUHigh xDeploymentTestHost27666\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"CPUHigh xDeploymentTestHost27666\",\"description\":\"The average CPU is high across all the instances of xDeploymentTestHost27666\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"metricName\":\"CpuPercentage\"},\"operator\":\"GreaterThan\",\"threshold\":90,\"windowSize\":\"PT15M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"name\":\"LongHttpQueue xDeploymentTestHost27666\",\"type\":\"microsoft.insights/alertrules\",\"location\":\"East US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\":\"Resource\"},\"properties\":{\"name\":\"LongHttpQueue xDeploymentTestHost27666\",\"description\":\"The HTTP queue for the instances of xDeploymentTestHost27666 has a large number of pending requests.\",\"isEnabled\":false,\"condition\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.ThresholdRuleCondition\",\"dataSource\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleMetricDataSource\",\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"metricName\":\"HttpQueueLength\"},\"operator\":\"GreaterThan\",\"threshold\":100,\"windowSize\":\"PT5M\"},\"action\":{\"odata.type\":\"Microsoft.WindowsAzure.Management.Monitoring.Alerts.Models.RuleEmailAction\",\"sendToServiceOwners\":true,\"customEmails\":[]}}},{\"dependsOn\":[\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"],\"apiVersion\":\"2014-04-01\",\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"name\":\"xDeploymentTestSite14863\",\"type\":\"microsoft.insights/components\",\"location\":\"Central US\",\"tags\":{\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\":\"Resource\"},\"properties\":{\"applicationId\":\"xDeploymentTestSite14863\"}}]}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-ratelimit-remaining-subscription-writes': '1198', - 'x-ms-request-id': '4c4dbf15-f4ee-45d3-af11-1e9bd677df7d', - 'x-ms-correlation-request-id': '4c4dbf15-f4ee-45d3-af11-1e9bd677df7d', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T204409Z:4c4dbf15-f4ee-45d3-af11-1e9bd677df7d', + 'x-ms-request-id': '6633fa8e-bcb4-4900-821d-4be8e054f4f5', + 'x-ms-correlation-request-id': '6633fa8e-bcb4-4900-821d-4be8e054f4f5', + 'x-ms-routing-request-id': 'WESTUS:20160421T032914Z:6633fa8e-bcb4-4900-821d-4be8e054f4f5', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:44:09 GMT', + date: 'Thu, 21 Apr 2016 03:29:13 GMT', connection: 'close', - 'content-length': '15601' }); + 'content-length': '15741' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"name\":\"Deploy15629\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-01-30T20:44:11.4142142Z\",\"duration\":\"PT1.1855836S\",\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}]}}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"name\":\"Deploy17756\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-04-21T03:29:15.874898Z\",\"duration\":\"PT0.7593055S\",\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'azure-asyncoperation': 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/operationStatuses/08587474202352491160?api-version=2016-02-01', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '7b72d842-f7f4-4d32-9165-c248ab79e8bd', - 'x-ms-correlation-request-id': '7b72d842-f7f4-4d32-9165-c248ab79e8bd', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T204411Z:7b72d842-f7f4-4d32-9165-c248ab79e8bd', + 'azure-asyncoperation': 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/operationStatuses/08587403975303622108?api-version=2016-02-01', + 'x-ms-ratelimit-remaining-subscription-writes': '1198', + 'x-ms-request-id': 'a34ace8b-e97b-41a1-94cd-b46cd8b5ee07', + 'x-ms-correlation-request-id': 'a34ace8b-e97b-41a1-94cd-b46cd8b5ee07', + 'x-ms-routing-request-id': 'WESTUS:20160421T032915Z:a34ace8b-e97b-41a1-94cd-b46cd8b5ee07', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:44:11 GMT', + date: 'Thu, 21 Apr 2016 03:29:14 GMT', connection: 'close', - 'content-length': '5305' }); + 'content-length': '5360' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"name\":\"Deploy15629\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-01-30T20:44:11.4142142Z\",\"duration\":\"PT1.1855836S\",\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}]}}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'azure-asyncoperation': 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/operationStatuses/08587474202352491160?api-version=2016-02-01', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '7b72d842-f7f4-4d32-9165-c248ab79e8bd', - 'x-ms-correlation-request-id': '7b72d842-f7f4-4d32-9165-c248ab79e8bd', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T204411Z:7b72d842-f7f4-4d32-9165-c248ab79e8bd', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:44:11 GMT', - connection: 'close', - 'content-length': '5305' }); - return result; }, -function (nock) { -var result = -nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/operationStatuses/08587474202352491160?api-version=2016-02-01') - .reply(200, "{\"status\":\"Running\"}", { 'cache-control': 'no-cache', - pragma: 'no-cache', - 'content-type': 'application/json; charset=utf-8', - expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14991', - 'x-ms-request-id': '987b7643-f879-4cda-b3a9-f4199eec70ab', - 'x-ms-correlation-request-id': '987b7643-f879-4cda-b3a9-f4199eec70ab', - 'x-ms-routing-request-id': 'WESTUS:20160130T204441Z:987b7643-f879-4cda-b3a9-f4199eec70ab', - 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:44:41 GMT', - connection: 'close', - 'content-length': '20' }); - return result; }, -function (nock) { -var result = -nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/operationStatuses/08587474202352491160?api-version=2016-02-01') - .reply(200, "{\"status\":\"Running\"}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"name\":\"Deploy17756\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2016-04-21T03:29:15.874898Z\",\"duration\":\"PT0.7593055S\",\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14991', - 'x-ms-request-id': '987b7643-f879-4cda-b3a9-f4199eec70ab', - 'x-ms-correlation-request-id': '987b7643-f879-4cda-b3a9-f4199eec70ab', - 'x-ms-routing-request-id': 'WESTUS:20160130T204441Z:987b7643-f879-4cda-b3a9-f4199eec70ab', + 'azure-asyncoperation': 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/operationStatuses/08587403975303622108?api-version=2016-02-01', + 'x-ms-ratelimit-remaining-subscription-writes': '1198', + 'x-ms-request-id': 'a34ace8b-e97b-41a1-94cd-b46cd8b5ee07', + 'x-ms-correlation-request-id': 'a34ace8b-e97b-41a1-94cd-b46cd8b5ee07', + 'x-ms-routing-request-id': 'WESTUS:20160421T032915Z:a34ace8b-e97b-41a1-94cd-b46cd8b5ee07', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:44:41 GMT', + date: 'Thu, 21 Apr 2016 03:29:14 GMT', connection: 'close', - 'content-length': '20' }); + 'content-length': '5360' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/operationStatuses/08587474202352491160?api-version=2016-02-01') - .reply(200, "{\"status\":\"Succeeded\"}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"name\":\"Deploy17756\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Running\",\"timestamp\":\"2016-04-21T03:29:16.0118938Z\",\"duration\":\"PT0.8963013S\",\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': '048cb1d1-d995-4046-a47d-fc0a209e766c', - 'x-ms-correlation-request-id': '048cb1d1-d995-4046-a47d-fc0a209e766c', - 'x-ms-routing-request-id': 'WESTUS:20160130T204511Z:048cb1d1-d995-4046-a47d-fc0a209e766c', + 'x-ms-request-id': '259309b2-b332-476c-a11e-6f129cb6b443', + 'x-ms-correlation-request-id': '259309b2-b332-476c-a11e-6f129cb6b443', + 'x-ms-routing-request-id': 'WESTUS:20160421T032916Z:259309b2-b332-476c-a11e-6f129cb6b443', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:11 GMT', + date: 'Thu, 21 Apr 2016 03:29:16 GMT', connection: 'close', - 'content-length': '22' }); + 'content-length': '5372' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/operationStatuses/08587474202352491160?api-version=2016-02-01') - .reply(200, "{\"status\":\"Succeeded\"}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"name\":\"Deploy17756\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Running\",\"timestamp\":\"2016-04-21T03:29:16.0118938Z\",\"duration\":\"PT0.8963013S\",\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': '048cb1d1-d995-4046-a47d-fc0a209e766c', - 'x-ms-correlation-request-id': '048cb1d1-d995-4046-a47d-fc0a209e766c', - 'x-ms-routing-request-id': 'WESTUS:20160130T204511Z:048cb1d1-d995-4046-a47d-fc0a209e766c', + 'x-ms-request-id': '259309b2-b332-476c-a11e-6f129cb6b443', + 'x-ms-correlation-request-id': '259309b2-b332-476c-a11e-6f129cb6b443', + 'x-ms-routing-request-id': 'WESTUS:20160421T032916Z:259309b2-b332-476c-a11e-6f129cb6b443', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:11 GMT', + date: 'Thu, 21 Apr 2016 03:29:16 GMT', connection: 'close', - 'content-length': '22' }); + 'content-length': '5372' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629?api-version=2016-02-01') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"name\":\"Deploy15629\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T20:45:04.5214215Z\",\"duration\":\"PT54.2927909S\",\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}", { 'cache-control': 'no-cache', + .filteringPath(function (path) { return path.slice(0, path.indexOf('&')); }) +.get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') + .reply(200, "{\"value\":[]}", { 'cache-control': 'no-cache', pragma: 'no-cache', + 'content-length': '12', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14996', - 'x-ms-request-id': '2e31a1eb-af14-4cb2-8e9d-4810c4e9958d', - 'x-ms-correlation-request-id': '2e31a1eb-af14-4cb2-8e9d-4810c4e9958d', - 'x-ms-routing-request-id': 'WESTUS:20160130T204512Z:2e31a1eb-af14-4cb2-8e9d-4810c4e9958d', + vary: 'Accept-Encoding', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:12 GMT', - connection: 'close', - 'content-length': '6046' }); + 'x-ms-request-id': 'WestUS_fb4a5c38881549768ae1fbd64a7196bb_635968061568504977', + server: 'Microsoft-IIS/8.5', + 'x-ms-ratelimit-remaining-subscription-reads': '14999', + 'x-ms-correlation-request-id': '2e70978f-f4de-4c76-9bcb-b4fafc39b172', + 'x-ms-routing-request-id': 'WESTUS:20160421T032916Z:2e70978f-f4de-4c76-9bcb-b4fafc39b172', + date: 'Thu, 21 Apr 2016 03:29:16 GMT', + connection: 'close' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629?api-version=2016-02-01') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"name\":\"Deploy15629\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T20:45:04.5214215Z\",\"duration\":\"PT54.2927909S\",\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}", { 'cache-control': 'no-cache', + .filteringPath(function (path) { return path.slice(0, path.indexOf('&')); }) +.get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') + .reply(200, "{\"value\":[]}", { 'cache-control': 'no-cache', pragma: 'no-cache', + 'content-length': '12', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14996', - 'x-ms-request-id': '2e31a1eb-af14-4cb2-8e9d-4810c4e9958d', - 'x-ms-correlation-request-id': '2e31a1eb-af14-4cb2-8e9d-4810c4e9958d', - 'x-ms-routing-request-id': 'WESTUS:20160130T204512Z:2e31a1eb-af14-4cb2-8e9d-4810c4e9958d', + vary: 'Accept-Encoding', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:12 GMT', - connection: 'close', - 'content-length': '6046' }); + 'x-ms-request-id': 'WestUS_fb4a5c38881549768ae1fbd64a7196bb_635968061568504977', + server: 'Microsoft-IIS/8.5', + 'x-ms-ratelimit-remaining-subscription-reads': '14999', + 'x-ms-correlation-request-id': '2e70978f-f4de-4c76-9bcb-b4fafc39b172', + 'x-ms-routing-request-id': 'WESTUS:20160421T032916Z:2e70978f-f4de-4c76-9bcb-b4fafc39b172', + date: 'Thu, 21 Apr 2016 03:29:16 GMT', + connection: 'close' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"name\":\"Deploy15629\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T20:45:04.5214215Z\",\"duration\":\"PT54.2927909S\",\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}]}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"name\":\"Deploy17756\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Running\",\"timestamp\":\"2016-04-21T03:29:16.0118938Z\",\"duration\":\"PT0.8963013S\",\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14994', - 'x-ms-request-id': '22115ad2-1b8d-4243-b84a-30420c4f1672', - 'x-ms-correlation-request-id': '22115ad2-1b8d-4243-b84a-30420c4f1672', - 'x-ms-routing-request-id': 'WESTUS:20160130T204512Z:22115ad2-1b8d-4243-b84a-30420c4f1672', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': 'c5fb1f1f-3a8f-4e35-b77b-a7098d85941d', + 'x-ms-correlation-request-id': 'c5fb1f1f-3a8f-4e35-b77b-a7098d85941d', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032937Z:c5fb1f1f-3a8f-4e35-b77b-a7098d85941d', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:11 GMT', + date: 'Thu, 21 Apr 2016 03:29:36 GMT', connection: 'close', - 'content-length': '6058' }); + 'content-length': '5372' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"name\":\"Deploy15629\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T20:45:04.5214215Z\",\"duration\":\"PT54.2927909S\",\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}]}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"name\":\"Deploy17756\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Running\",\"timestamp\":\"2016-04-21T03:29:16.0118938Z\",\"duration\":\"PT0.8963013S\",\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14994', - 'x-ms-request-id': '22115ad2-1b8d-4243-b84a-30420c4f1672', - 'x-ms-correlation-request-id': '22115ad2-1b8d-4243-b84a-30420c4f1672', - 'x-ms-routing-request-id': 'WESTUS:20160130T204512Z:22115ad2-1b8d-4243-b84a-30420c4f1672', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': 'c5fb1f1f-3a8f-4e35-b77b-a7098d85941d', + 'x-ms-correlation-request-id': 'c5fb1f1f-3a8f-4e35-b77b-a7098d85941d', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032937Z:c5fb1f1f-3a8f-4e35-b77b-a7098d85941d', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:11 GMT', + date: 'Thu, 21 Apr 2016 03:29:36 GMT', connection: 'close', - 'content-length': '6058' }); + 'content-length': '5372' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') .filteringPath(function (path) { return path.slice(0, path.indexOf('&')); }) -.get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') - .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"81507804-44fd-403e-a004-183e4c1c2f3a\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/81507804-44fd-403e-a004-183e4c1c2f3a/ticks/635897834845576399\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:44.5576399Z\",\"submissionTimestamp\":\"2016-01-30T20:45:00.1488242Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"1d8201f1-bdef-4030-a628-9824d567d98e\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/1d8201f1-bdef-4030-a628-9824d567d98e/ticks/635897834764237635\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"4680f073-2e10-45cc-b582-4becdcc0fa08\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.4237635Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"11461a07-66d6-48bb-b37a-3697f1cf262b\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/11461a07-66d6-48bb-b37a-3697f1cf262b/ticks/635897834760908381\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"574a127c-796e-46c6-8bff-2be1d41d013e\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.0908381Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3dcdf9b3-21d3-40b7-a919-7beadb184dc3\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/3dcdf9b3-21d3-40b7-a919-7beadb184dc3/ticks/635897834739073368\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:33.9073368Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"df82fddd-1362-451d-8bfa-59cc95b77236\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/df82fddd-1362-451d-8bfa-59cc95b77236/ticks/635897834714010462\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.4010462Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"64f18084-1599-4410-8a8a-b09318368ca8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/64f18084-1599-4410-8a8a-b09318368ca8/ticks/635897834713830947\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.3830947Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3354531e-e64a-43ed-a46f-ad29592377d8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/3354531e-e64a-43ed-a46f-ad29592377d8/ticks/635897834707750254\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.7750254Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"635bc019-0f31-4207-9e62-bac951886ffd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/635bc019-0f31-4207-9e62-bac951886ffd/ticks/635897834701487199\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.1487199Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1595084Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"97cce7da-32f2-4f68-b045-4081c45ce89d\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/97cce7da-32f2-4f68-b045-4081c45ce89d/ticks/635897834688736557\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"be2e5a59-f6cc-4ee8-aaf7-535ea9f7bcc4\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.8736557Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"d10d5051-649a-40fa-a0eb-2e91915098c8\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/d10d5051-649a-40fa-a0eb-2e91915098c8/ticks/635897834681382642\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a00cd931-247f-49b7-a7e8-8355e495acc8\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.1382642Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5d54d09a-ec0d-449a-b663-ef44d0f31483\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/5d54d09a-ec0d-449a-b663-ef44d0f31483/ticks/635897834679699614\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"c6cb0a54-1788-4aee-8992-749df3cfa823\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.9699614Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e80ba99-cdd2-4d69-9ce8-632892fa5b59\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/3e80ba99-cdd2-4d69-9ce8-632892fa5b59/ticks/635897834678400623\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"6f217912-4d89-466e-9676-f359a688b1d6\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.8400623Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"6d7f7b82-c391-476d-90c9-df21a6a5907e\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/6d7f7b82-c391-476d-90c9-df21a6a5907e/ticks/635897834629665163\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.9665163Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"8c256639-77dd-4c83-97cb-cc73b8cd97fb\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/8c256639-77dd-4c83-97cb-cc73b8cd97fb/ticks/635897834624509096\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.4509096Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0013722Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"f8130f44-2401-4f70-881d-b6ee0bcea66d\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/f8130f44-2401-4f70-881d-b6ee0bcea66d/ticks/635897834617843001\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7843001Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"0ce74987-0cc3-4d9d-9e14-656285941f8b\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/0ce74987-0cc3-4d9d-9e14-656285941f8b/ticks/635897834617030874\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"East US\\\",\\\"tags\\\":{\\\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\":\\\"Resource\\\"},\\\"properties\\\":{\\\"profiles\\\":[{\\\"name\\\":\\\"Default\\\",\\\"capacity\\\":{\\\"minimum\\\":\\\"1\\\",\\\"maximum\\\":\\\"2\\\",\\\"default\\\":\\\"1\\\"},\\\"rules\\\":[{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT10M\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"GreaterThan\\\",\\\"threshold\\\":80},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Increase\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT10M\\\"}},{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT1H\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"LessThan\\\",\\\"threshold\\\":60},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Decrease\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT1H\\\"}}]}],\\\"enabled\\\":false,\\\"name\\\":\\\"xDeploymentTestHost5985-xDeploymentTestGroup8112\\\",\\\"targetResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\"}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7030874Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5b91b4a3-5a9a-449f-aabd-e9491c76c408\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/5b91b4a3-5a9a-449f-aabd-e9491c76c408/ticks/635897834605702569\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a4880b3a-bcca-4af7-be9e-ebe5c41f0bb1\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:20.5702569Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.3630067Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e56b70c-80aa-4ef5-8d40-c679844ca8c3\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/3e56b70c-80aa-4ef5-8d40-c679844ca8c3/ticks/635897834542692920\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:14.269292Z\",\"submissionTimestamp\":\"2016-01-30T20:44:29.5305932Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"2a5785c1-d8b4-4448-be7e-78b70f8e4105\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/2a5785c1-d8b4-4448-be7e-78b70f8e4105/ticks/635897834516702266\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:11.6702266Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"733ba68b-0bbf-4b30-b7c1-8c6b963e98f0\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/733ba68b-0bbf-4b30-b7c1-8c6b963e98f0/ticks/635897834497327895\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:09.7327895Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"}]}", { 'cache-control': 'no-cache', +.get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') + .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"7bcee135-9980-46c5-a75a-b16ca5560eb8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"08f3aaa8-a1bb-4dd9-9850-6c15a33055df\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666/events/7bcee135-9980-46c5-a75a-b16ca5560eb8/ticks/635968061569156932\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"operationId\":\"190bf84d-ae38-4868-8e2e-93311ccd34ab\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:16.9156932Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.152819Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"c7d04977-8bc8-4798-b1dd-ff54d188eceb\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/c7d04977-8bc8-4798-b1dd-ff54d188eceb/ticks/635968061559322039\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-04-21T03:29:15.9322039Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"e09af290-9451-4126-9748-983a9f89d1fd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/e09af290-9451-4126-9748-983a9f89d1fd/ticks/635968061546666030\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:14.666603Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', - 'content-length': '66360', + 'content-length': '8883', 'content-type': 'application/json; charset=utf-8', expires: '-1', vary: 'Accept-Encoding', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - 'x-ms-request-id': 'WestUS_6bcfd22f4330437ba4f1b198b2371fa4_635897835133373756', + 'x-ms-request-id': 'EastUS_fcfe59f4f1794496af6c9d23d8ee119e_635968061783802274', server: 'Microsoft-IIS/8.5', - 'x-ms-ratelimit-remaining-subscription-reads': '14993', - 'x-ms-correlation-request-id': '20e92d47-a1fa-4e70-ba81-487a75150ddf', - 'x-ms-routing-request-id': 'WESTUS:20160130T204513Z:20e92d47-a1fa-4e70-ba81-487a75150ddf', - date: 'Sat, 30 Jan 2016 20:45:12 GMT', + 'x-ms-ratelimit-remaining-subscription-reads': '14998', + 'x-ms-correlation-request-id': '9133b111-5dfa-4c0a-8802-244c81aa0b56', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032938Z:9133b111-5dfa-4c0a-8802-244c81aa0b56', + date: 'Thu, 21 Apr 2016 03:29:38 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringPath(function (path) { return path.slice(0, path.indexOf('&')); }) -.get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') - .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"81507804-44fd-403e-a004-183e4c1c2f3a\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/81507804-44fd-403e-a004-183e4c1c2f3a/ticks/635897834845576399\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:44.5576399Z\",\"submissionTimestamp\":\"2016-01-30T20:45:00.1488242Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"1d8201f1-bdef-4030-a628-9824d567d98e\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/1d8201f1-bdef-4030-a628-9824d567d98e/ticks/635897834764237635\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"4680f073-2e10-45cc-b582-4becdcc0fa08\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.4237635Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"11461a07-66d6-48bb-b37a-3697f1cf262b\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/11461a07-66d6-48bb-b37a-3697f1cf262b/ticks/635897834760908381\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"574a127c-796e-46c6-8bff-2be1d41d013e\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.0908381Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3dcdf9b3-21d3-40b7-a919-7beadb184dc3\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/3dcdf9b3-21d3-40b7-a919-7beadb184dc3/ticks/635897834739073368\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:33.9073368Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"df82fddd-1362-451d-8bfa-59cc95b77236\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/df82fddd-1362-451d-8bfa-59cc95b77236/ticks/635897834714010462\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.4010462Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"64f18084-1599-4410-8a8a-b09318368ca8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/64f18084-1599-4410-8a8a-b09318368ca8/ticks/635897834713830947\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.3830947Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3354531e-e64a-43ed-a46f-ad29592377d8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/3354531e-e64a-43ed-a46f-ad29592377d8/ticks/635897834707750254\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.7750254Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"635bc019-0f31-4207-9e62-bac951886ffd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/635bc019-0f31-4207-9e62-bac951886ffd/ticks/635897834701487199\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.1487199Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1595084Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"97cce7da-32f2-4f68-b045-4081c45ce89d\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/97cce7da-32f2-4f68-b045-4081c45ce89d/ticks/635897834688736557\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"be2e5a59-f6cc-4ee8-aaf7-535ea9f7bcc4\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.8736557Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"d10d5051-649a-40fa-a0eb-2e91915098c8\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/d10d5051-649a-40fa-a0eb-2e91915098c8/ticks/635897834681382642\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a00cd931-247f-49b7-a7e8-8355e495acc8\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.1382642Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5d54d09a-ec0d-449a-b663-ef44d0f31483\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/5d54d09a-ec0d-449a-b663-ef44d0f31483/ticks/635897834679699614\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"c6cb0a54-1788-4aee-8992-749df3cfa823\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.9699614Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e80ba99-cdd2-4d69-9ce8-632892fa5b59\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/3e80ba99-cdd2-4d69-9ce8-632892fa5b59/ticks/635897834678400623\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"6f217912-4d89-466e-9676-f359a688b1d6\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.8400623Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"6d7f7b82-c391-476d-90c9-df21a6a5907e\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/6d7f7b82-c391-476d-90c9-df21a6a5907e/ticks/635897834629665163\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.9665163Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"8c256639-77dd-4c83-97cb-cc73b8cd97fb\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/8c256639-77dd-4c83-97cb-cc73b8cd97fb/ticks/635897834624509096\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.4509096Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0013722Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"f8130f44-2401-4f70-881d-b6ee0bcea66d\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/f8130f44-2401-4f70-881d-b6ee0bcea66d/ticks/635897834617843001\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7843001Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"0ce74987-0cc3-4d9d-9e14-656285941f8b\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/0ce74987-0cc3-4d9d-9e14-656285941f8b/ticks/635897834617030874\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"East US\\\",\\\"tags\\\":{\\\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\":\\\"Resource\\\"},\\\"properties\\\":{\\\"profiles\\\":[{\\\"name\\\":\\\"Default\\\",\\\"capacity\\\":{\\\"minimum\\\":\\\"1\\\",\\\"maximum\\\":\\\"2\\\",\\\"default\\\":\\\"1\\\"},\\\"rules\\\":[{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT10M\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"GreaterThan\\\",\\\"threshold\\\":80},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Increase\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT10M\\\"}},{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT1H\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"LessThan\\\",\\\"threshold\\\":60},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Decrease\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT1H\\\"}}]}],\\\"enabled\\\":false,\\\"name\\\":\\\"xDeploymentTestHost5985-xDeploymentTestGroup8112\\\",\\\"targetResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\"}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7030874Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5b91b4a3-5a9a-449f-aabd-e9491c76c408\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/5b91b4a3-5a9a-449f-aabd-e9491c76c408/ticks/635897834605702569\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a4880b3a-bcca-4af7-be9e-ebe5c41f0bb1\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:20.5702569Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.3630067Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e56b70c-80aa-4ef5-8d40-c679844ca8c3\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/3e56b70c-80aa-4ef5-8d40-c679844ca8c3/ticks/635897834542692920\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:14.269292Z\",\"submissionTimestamp\":\"2016-01-30T20:44:29.5305932Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"2a5785c1-d8b4-4448-be7e-78b70f8e4105\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/2a5785c1-d8b4-4448-be7e-78b70f8e4105/ticks/635897834516702266\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:11.6702266Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"733ba68b-0bbf-4b30-b7c1-8c6b963e98f0\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/733ba68b-0bbf-4b30-b7c1-8c6b963e98f0/ticks/635897834497327895\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:09.7327895Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"}]}", { 'cache-control': 'no-cache', +.get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') + .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"7bcee135-9980-46c5-a75a-b16ca5560eb8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"08f3aaa8-a1bb-4dd9-9850-6c15a33055df\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666/events/7bcee135-9980-46c5-a75a-b16ca5560eb8/ticks/635968061569156932\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"operationId\":\"190bf84d-ae38-4868-8e2e-93311ccd34ab\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:16.9156932Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.152819Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"c7d04977-8bc8-4798-b1dd-ff54d188eceb\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/c7d04977-8bc8-4798-b1dd-ff54d188eceb/ticks/635968061559322039\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-04-21T03:29:15.9322039Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"e09af290-9451-4126-9748-983a9f89d1fd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/e09af290-9451-4126-9748-983a9f89d1fd/ticks/635968061546666030\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:14.666603Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', - 'content-length': '66360', + 'content-length': '8883', 'content-type': 'application/json; charset=utf-8', expires: '-1', vary: 'Accept-Encoding', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - 'x-ms-request-id': 'WestUS_6bcfd22f4330437ba4f1b198b2371fa4_635897835133373756', + 'x-ms-request-id': 'EastUS_fcfe59f4f1794496af6c9d23d8ee119e_635968061783802274', server: 'Microsoft-IIS/8.5', - 'x-ms-ratelimit-remaining-subscription-reads': '14993', - 'x-ms-correlation-request-id': '20e92d47-a1fa-4e70-ba81-487a75150ddf', - 'x-ms-routing-request-id': 'WESTUS:20160130T204513Z:20e92d47-a1fa-4e70-ba81-487a75150ddf', - date: 'Sat, 30 Jan 2016 20:45:12 GMT', + 'x-ms-ratelimit-remaining-subscription-reads': '14998', + 'x-ms-correlation-request-id': '9133b111-5dfa-4c0a-8802-244c81aa0b56', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032938Z:9133b111-5dfa-4c0a-8802-244c81aa0b56', + date: 'Thu, 21 Apr 2016 03:29:38 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') .filteringPath(function (path) { return path.slice(0, path.indexOf('&')); }) -.get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') - .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"81507804-44fd-403e-a004-183e4c1c2f3a\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/81507804-44fd-403e-a004-183e4c1c2f3a/ticks/635897834845576399\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:44.5576399Z\",\"submissionTimestamp\":\"2016-01-30T20:45:00.1488242Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"1d8201f1-bdef-4030-a628-9824d567d98e\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/1d8201f1-bdef-4030-a628-9824d567d98e/ticks/635897834764237635\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"4680f073-2e10-45cc-b582-4becdcc0fa08\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.4237635Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"11461a07-66d6-48bb-b37a-3697f1cf262b\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/11461a07-66d6-48bb-b37a-3697f1cf262b/ticks/635897834760908381\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"574a127c-796e-46c6-8bff-2be1d41d013e\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.0908381Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3dcdf9b3-21d3-40b7-a919-7beadb184dc3\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/3dcdf9b3-21d3-40b7-a919-7beadb184dc3/ticks/635897834739073368\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:33.9073368Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"role\":\"Subscription Admin\"},\"channels\":\"Debug\",\"claims\":{},\"correlationId\":\"50309213-38db-4d9b-ac03-e26a5260c582\",\"description\":\"\",\"eventDataId\":\"1098166e-14f3-44a0-b56f-3b55d17f65f4\",\"eventName\":{\"value\":\"ResourceHydration\",\"localizedValue\":\"Resource hydration\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/1098166e-14f3-44a0-b56f-3b55d17f65f4/ticks/635897834714507376\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"60c9e895-613e-4279-a71f-2f4cb2e95d30\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.4507376Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1935068Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"df82fddd-1362-451d-8bfa-59cc95b77236\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/df82fddd-1362-451d-8bfa-59cc95b77236/ticks/635897834714010462\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.4010462Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"64f18084-1599-4410-8a8a-b09318368ca8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/64f18084-1599-4410-8a8a-b09318368ca8/ticks/635897834713830947\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.3830947Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3354531e-e64a-43ed-a46f-ad29592377d8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/3354531e-e64a-43ed-a46f-ad29592377d8/ticks/635897834707750254\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.7750254Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"635bc019-0f31-4207-9e62-bac951886ffd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/635bc019-0f31-4207-9e62-bac951886ffd/ticks/635897834701487199\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.1487199Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1595084Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"97cce7da-32f2-4f68-b045-4081c45ce89d\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/97cce7da-32f2-4f68-b045-4081c45ce89d/ticks/635897834688736557\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"be2e5a59-f6cc-4ee8-aaf7-535ea9f7bcc4\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.8736557Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"d10d5051-649a-40fa-a0eb-2e91915098c8\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/d10d5051-649a-40fa-a0eb-2e91915098c8/ticks/635897834681382642\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a00cd931-247f-49b7-a7e8-8355e495acc8\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.1382642Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5d54d09a-ec0d-449a-b663-ef44d0f31483\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/5d54d09a-ec0d-449a-b663-ef44d0f31483/ticks/635897834679699614\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"c6cb0a54-1788-4aee-8992-749df3cfa823\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.9699614Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e80ba99-cdd2-4d69-9ce8-632892fa5b59\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/3e80ba99-cdd2-4d69-9ce8-632892fa5b59/ticks/635897834678400623\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"6f217912-4d89-466e-9676-f359a688b1d6\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.8400623Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"6d7f7b82-c391-476d-90c9-df21a6a5907e\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/6d7f7b82-c391-476d-90c9-df21a6a5907e/ticks/635897834629665163\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.9665163Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"8c256639-77dd-4c83-97cb-cc73b8cd97fb\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/8c256639-77dd-4c83-97cb-cc73b8cd97fb/ticks/635897834624509096\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.4509096Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0013722Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"f8130f44-2401-4f70-881d-b6ee0bcea66d\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/f8130f44-2401-4f70-881d-b6ee0bcea66d/ticks/635897834617843001\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7843001Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"0ce74987-0cc3-4d9d-9e14-656285941f8b\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/0ce74987-0cc3-4d9d-9e14-656285941f8b/ticks/635897834617030874\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"East US\\\",\\\"tags\\\":{\\\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\":\\\"Resource\\\"},\\\"properties\\\":{\\\"profiles\\\":[{\\\"name\\\":\\\"Default\\\",\\\"capacity\\\":{\\\"minimum\\\":\\\"1\\\",\\\"maximum\\\":\\\"2\\\",\\\"default\\\":\\\"1\\\"},\\\"rules\\\":[{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT10M\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"GreaterThan\\\",\\\"threshold\\\":80},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Increase\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT10M\\\"}},{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT1H\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"LessThan\\\",\\\"threshold\\\":60},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Decrease\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT1H\\\"}}]}],\\\"enabled\\\":false,\\\"name\\\":\\\"xDeploymentTestHost5985-xDeploymentTestGroup8112\\\",\\\"targetResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\"}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7030874Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5b91b4a3-5a9a-449f-aabd-e9491c76c408\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/5b91b4a3-5a9a-449f-aabd-e9491c76c408/ticks/635897834605702569\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a4880b3a-bcca-4af7-be9e-ebe5c41f0bb1\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:20.5702569Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.3630067Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e56b70c-80aa-4ef5-8d40-c679844ca8c3\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/3e56b70c-80aa-4ef5-8d40-c679844ca8c3/ticks/635897834542692920\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:14.269292Z\",\"submissionTimestamp\":\"2016-01-30T20:44:29.5305932Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"2a5785c1-d8b4-4448-be7e-78b70f8e4105\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/2a5785c1-d8b4-4448-be7e-78b70f8e4105/ticks/635897834516702266\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:11.6702266Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"733ba68b-0bbf-4b30-b7c1-8c6b963e98f0\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/733ba68b-0bbf-4b30-b7c1-8c6b963e98f0/ticks/635897834497327895\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:09.7327895Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/validate/action\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"4c4dbf15-f4ee-45d3-af11-1e9bd677df7d\",\"description\":\"\",\"eventDataId\":\"f711364e-6311-46ea-8189-ea029c858103\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cce7c35a-cb05-4b86-857c-01d93a8edf02\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"POST\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/f711364e-6311-46ea-8189-ea029c858103/ticks/635897834495141263\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"4c4dbf15-f4ee-45d3-af11-1e9bd677df7d\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/validate/action\",\"localizedValue\":\"Microsoft.Resources/deployments/validate/action\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:09.5141263Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.0313904Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/validate/action\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"4c4dbf15-f4ee-45d3-af11-1e9bd677df7d\",\"description\":\"\",\"eventDataId\":\"2acddec1-7d9a-4854-ba47-b4aef0ba1d2b\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cce7c35a-cb05-4b86-857c-01d93a8edf02\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"POST\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/2acddec1-7d9a-4854-ba47-b4aef0ba1d2b/ticks/635897834484360767\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"4c4dbf15-f4ee-45d3-af11-1e9bd677df7d\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/validate/action\",\"localizedValue\":\"Microsoft.Resources/deployments/validate/action\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:08.4360767Z\",\"submissionTimestamp\":\"2016-01-30T20:44:19.8667343Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"01ecaa51-4b50-48b6-9f5f-03de8f3c7742\",\"description\":\"\",\"eventDataId\":\"d4ba663a-3f36-45f8-ad6a-ba8be3561222\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"867ff8b9-5b5d-49ea-bf2b-bd9714eac6e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/events/d4ba663a-3f36-45f8-ad6a-ba8be3561222/ticks/635897834480569578\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112\",\"operationId\":\"01ecaa51-4b50-48b6-9f5f-03de8f3c7742\",\"operationName\":{\"value\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"localizedValue\":\"Update resource group\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null,\"responseBody\":\"{\\\"id\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112\\\",\\\"name\\\":\\\"xDeploymentTestGroup8112\\\",\\\"location\\\":\\\"westus\\\",\\\"tags\\\":{},\\\"properties\\\":{\\\"provisioningState\\\":\\\"Succeeded\\\"}}\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:08.0569578Z\",\"submissionTimestamp\":\"2016-01-30T20:44:19.9059981Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"01ecaa51-4b50-48b6-9f5f-03de8f3c7742\",\"description\":\"\",\"eventDataId\":\"5fb812dd-5fa9-4cf8-9853-d5cb0750adb2\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"867ff8b9-5b5d-49ea-bf2b-bd9714eac6e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/events/5fb812dd-5fa9-4cf8-9853-d5cb0750adb2/ticks/635897834468851641\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112\",\"operationId\":\"01ecaa51-4b50-48b6-9f5f-03de8f3c7742\",\"operationName\":{\"value\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"localizedValue\":\"Update resource group\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"West US\\\",\\\"tags\\\":{}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:06.8851641Z\",\"submissionTimestamp\":\"2016-01-30T20:44:19.9059981Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"}]}", { 'cache-control': 'no-cache', +.get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') + .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"7bcee135-9980-46c5-a75a-b16ca5560eb8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"08f3aaa8-a1bb-4dd9-9850-6c15a33055df\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666/events/7bcee135-9980-46c5-a75a-b16ca5560eb8/ticks/635968061569156932\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"operationId\":\"190bf84d-ae38-4868-8e2e-93311ccd34ab\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:16.9156932Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.152819Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"c7d04977-8bc8-4798-b1dd-ff54d188eceb\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/c7d04977-8bc8-4798-b1dd-ff54d188eceb/ticks/635968061559322039\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-04-21T03:29:15.9322039Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"e09af290-9451-4126-9748-983a9f89d1fd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/e09af290-9451-4126-9748-983a9f89d1fd/ticks/635968061546666030\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:14.666603Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/validate/action\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"6633fa8e-bcb4-4900-821d-4be8e054f4f5\",\"description\":\"\",\"eventDataId\":\"6a493389-8a92-4559-aa6b-f357fc6f3fe5\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cd3801fd-bbfd-4f63-82dd-9da7783a6b4f\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"POST\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/6a493389-8a92-4559-aa6b-f357fc6f3fe5/ticks/635968061544679273\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"6633fa8e-bcb4-4900-821d-4be8e054f4f5\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/validate/action\",\"localizedValue\":\"Microsoft.Resources/deployments/validate/action\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-04-21T03:29:14.4679273Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.5014792Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/validate/action\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"6633fa8e-bcb4-4900-821d-4be8e054f4f5\",\"description\":\"\",\"eventDataId\":\"51c165be-2a1b-4deb-9e86-b2f3e6a7e03e\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cd3801fd-bbfd-4f63-82dd-9da7783a6b4f\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"POST\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/51c165be-2a1b-4deb-9e86-b2f3e6a7e03e/ticks/635968061529696311\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"6633fa8e-bcb4-4900-821d-4be8e054f4f5\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/validate/action\",\"localizedValue\":\"Microsoft.Resources/deployments/validate/action\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:12.9696311Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.5014792Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"c433860d-c796-4e3d-9013-4c70d3816195\",\"description\":\"\",\"eventDataId\":\"e9f75da3-4151-4feb-9cb3-794bef6a4660\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"5af4f06b-5fa8-4ae1-8344-0d5a9db1e1d7\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/events/e9f75da3-4151-4feb-9cb3-794bef6a4660/ticks/635968061525588554\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771\",\"operationId\":\"c433860d-c796-4e3d-9013-4c70d3816195\",\"operationName\":{\"value\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"localizedValue\":\"Update resource group\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null,\"responseBody\":\"{\\\"id\\\":\\\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771\\\",\\\"name\\\":\\\"xDeploymentTestGroup8771\\\",\\\"location\\\":\\\"westus\\\",\\\"tags\\\":{},\\\"properties\\\":{\\\"provisioningState\\\":\\\"Succeeded\\\"}}\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-04-21T03:29:12.5588554Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.1647909Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"c433860d-c796-4e3d-9013-4c70d3816195\",\"description\":\"\",\"eventDataId\":\"85f7bccd-ac75-4c3d-b030-0d73055d1e3d\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"5af4f06b-5fa8-4ae1-8344-0d5a9db1e1d7\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/events/85f7bccd-ac75-4c3d-b030-0d73055d1e3d/ticks/635968061523385068\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771\",\"operationId\":\"c433860d-c796-4e3d-9013-4c70d3816195\",\"operationName\":{\"value\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"localizedValue\":\"Update resource group\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"West US\\\",\\\"tags\\\":{}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:12.3385068Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.1647909Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', - 'content-length': '80537', + 'content-length': '20885', 'content-type': 'application/json; charset=utf-8', expires: '-1', vary: 'Accept-Encoding', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - 'x-ms-request-id': 'WestUS_a09a67821ef64ae39062d784d89c1c6b_635897835146837811', + 'x-ms-request-id': 'EastUS_ae19b7ab72634a6485c11214bf387b87_635968061794195160', server: 'Microsoft-IIS/8.5', - 'x-ms-ratelimit-remaining-subscription-reads': '14996', - 'x-ms-correlation-request-id': 'd5b1fe9a-049f-4fd4-8084-6c03f2b7ca33', - 'x-ms-routing-request-id': 'WESTUS:20160130T204514Z:d5b1fe9a-049f-4fd4-8084-6c03f2b7ca33', - date: 'Sat, 30 Jan 2016 20:45:14 GMT', + 'x-ms-ratelimit-remaining-subscription-reads': '14994', + 'x-ms-correlation-request-id': '2f87a7b3-9d6c-49c5-b379-6ca0d55c9454', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032939Z:2f87a7b3-9d6c-49c5-b379-6ca0d55c9454', + date: 'Thu, 21 Apr 2016 03:29:39 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringPath(function (path) { return path.slice(0, path.indexOf('&')); }) -.get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') - .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"81507804-44fd-403e-a004-183e4c1c2f3a\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/81507804-44fd-403e-a004-183e4c1c2f3a/ticks/635897834845576399\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:44.5576399Z\",\"submissionTimestamp\":\"2016-01-30T20:45:00.1488242Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"1d8201f1-bdef-4030-a628-9824d567d98e\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/1d8201f1-bdef-4030-a628-9824d567d98e/ticks/635897834764237635\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"4680f073-2e10-45cc-b582-4becdcc0fa08\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.4237635Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"11461a07-66d6-48bb-b37a-3697f1cf262b\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/11461a07-66d6-48bb-b37a-3697f1cf262b/ticks/635897834760908381\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"574a127c-796e-46c6-8bff-2be1d41d013e\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.0908381Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3dcdf9b3-21d3-40b7-a919-7beadb184dc3\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/3dcdf9b3-21d3-40b7-a919-7beadb184dc3/ticks/635897834739073368\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:33.9073368Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"role\":\"Subscription Admin\"},\"channels\":\"Debug\",\"claims\":{},\"correlationId\":\"50309213-38db-4d9b-ac03-e26a5260c582\",\"description\":\"\",\"eventDataId\":\"1098166e-14f3-44a0-b56f-3b55d17f65f4\",\"eventName\":{\"value\":\"ResourceHydration\",\"localizedValue\":\"Resource hydration\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/1098166e-14f3-44a0-b56f-3b55d17f65f4/ticks/635897834714507376\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"60c9e895-613e-4279-a71f-2f4cb2e95d30\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.4507376Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1935068Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"df82fddd-1362-451d-8bfa-59cc95b77236\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/df82fddd-1362-451d-8bfa-59cc95b77236/ticks/635897834714010462\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.4010462Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"64f18084-1599-4410-8a8a-b09318368ca8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/64f18084-1599-4410-8a8a-b09318368ca8/ticks/635897834713830947\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.3830947Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3354531e-e64a-43ed-a46f-ad29592377d8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/3354531e-e64a-43ed-a46f-ad29592377d8/ticks/635897834707750254\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.7750254Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"635bc019-0f31-4207-9e62-bac951886ffd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/635bc019-0f31-4207-9e62-bac951886ffd/ticks/635897834701487199\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.1487199Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1595084Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"97cce7da-32f2-4f68-b045-4081c45ce89d\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/97cce7da-32f2-4f68-b045-4081c45ce89d/ticks/635897834688736557\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"be2e5a59-f6cc-4ee8-aaf7-535ea9f7bcc4\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.8736557Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"d10d5051-649a-40fa-a0eb-2e91915098c8\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/d10d5051-649a-40fa-a0eb-2e91915098c8/ticks/635897834681382642\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a00cd931-247f-49b7-a7e8-8355e495acc8\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.1382642Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5d54d09a-ec0d-449a-b663-ef44d0f31483\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/5d54d09a-ec0d-449a-b663-ef44d0f31483/ticks/635897834679699614\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"c6cb0a54-1788-4aee-8992-749df3cfa823\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.9699614Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e80ba99-cdd2-4d69-9ce8-632892fa5b59\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/3e80ba99-cdd2-4d69-9ce8-632892fa5b59/ticks/635897834678400623\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"6f217912-4d89-466e-9676-f359a688b1d6\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.8400623Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"6d7f7b82-c391-476d-90c9-df21a6a5907e\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/6d7f7b82-c391-476d-90c9-df21a6a5907e/ticks/635897834629665163\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.9665163Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"8c256639-77dd-4c83-97cb-cc73b8cd97fb\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/8c256639-77dd-4c83-97cb-cc73b8cd97fb/ticks/635897834624509096\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.4509096Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0013722Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"f8130f44-2401-4f70-881d-b6ee0bcea66d\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/f8130f44-2401-4f70-881d-b6ee0bcea66d/ticks/635897834617843001\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7843001Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"0ce74987-0cc3-4d9d-9e14-656285941f8b\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/0ce74987-0cc3-4d9d-9e14-656285941f8b/ticks/635897834617030874\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"East US\\\",\\\"tags\\\":{\\\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\":\\\"Resource\\\"},\\\"properties\\\":{\\\"profiles\\\":[{\\\"name\\\":\\\"Default\\\",\\\"capacity\\\":{\\\"minimum\\\":\\\"1\\\",\\\"maximum\\\":\\\"2\\\",\\\"default\\\":\\\"1\\\"},\\\"rules\\\":[{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT10M\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"GreaterThan\\\",\\\"threshold\\\":80},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Increase\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT10M\\\"}},{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT1H\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"LessThan\\\",\\\"threshold\\\":60},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Decrease\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT1H\\\"}}]}],\\\"enabled\\\":false,\\\"name\\\":\\\"xDeploymentTestHost5985-xDeploymentTestGroup8112\\\",\\\"targetResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\"}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7030874Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5b91b4a3-5a9a-449f-aabd-e9491c76c408\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/5b91b4a3-5a9a-449f-aabd-e9491c76c408/ticks/635897834605702569\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a4880b3a-bcca-4af7-be9e-ebe5c41f0bb1\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:20.5702569Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.3630067Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e56b70c-80aa-4ef5-8d40-c679844ca8c3\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/3e56b70c-80aa-4ef5-8d40-c679844ca8c3/ticks/635897834542692920\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:14.269292Z\",\"submissionTimestamp\":\"2016-01-30T20:44:29.5305932Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"2a5785c1-d8b4-4448-be7e-78b70f8e4105\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/2a5785c1-d8b4-4448-be7e-78b70f8e4105/ticks/635897834516702266\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:11.6702266Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"733ba68b-0bbf-4b30-b7c1-8c6b963e98f0\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/733ba68b-0bbf-4b30-b7c1-8c6b963e98f0/ticks/635897834497327895\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:09.7327895Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/validate/action\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"4c4dbf15-f4ee-45d3-af11-1e9bd677df7d\",\"description\":\"\",\"eventDataId\":\"f711364e-6311-46ea-8189-ea029c858103\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cce7c35a-cb05-4b86-857c-01d93a8edf02\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"POST\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/f711364e-6311-46ea-8189-ea029c858103/ticks/635897834495141263\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"4c4dbf15-f4ee-45d3-af11-1e9bd677df7d\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/validate/action\",\"localizedValue\":\"Microsoft.Resources/deployments/validate/action\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:09.5141263Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.0313904Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/validate/action\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"4c4dbf15-f4ee-45d3-af11-1e9bd677df7d\",\"description\":\"\",\"eventDataId\":\"2acddec1-7d9a-4854-ba47-b4aef0ba1d2b\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cce7c35a-cb05-4b86-857c-01d93a8edf02\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"POST\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/2acddec1-7d9a-4854-ba47-b4aef0ba1d2b/ticks/635897834484360767\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"4c4dbf15-f4ee-45d3-af11-1e9bd677df7d\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/validate/action\",\"localizedValue\":\"Microsoft.Resources/deployments/validate/action\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:08.4360767Z\",\"submissionTimestamp\":\"2016-01-30T20:44:19.8667343Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"01ecaa51-4b50-48b6-9f5f-03de8f3c7742\",\"description\":\"\",\"eventDataId\":\"d4ba663a-3f36-45f8-ad6a-ba8be3561222\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"867ff8b9-5b5d-49ea-bf2b-bd9714eac6e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/events/d4ba663a-3f36-45f8-ad6a-ba8be3561222/ticks/635897834480569578\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112\",\"operationId\":\"01ecaa51-4b50-48b6-9f5f-03de8f3c7742\",\"operationName\":{\"value\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"localizedValue\":\"Update resource group\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null,\"responseBody\":\"{\\\"id\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112\\\",\\\"name\\\":\\\"xDeploymentTestGroup8112\\\",\\\"location\\\":\\\"westus\\\",\\\"tags\\\":{},\\\"properties\\\":{\\\"provisioningState\\\":\\\"Succeeded\\\"}}\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:08.0569578Z\",\"submissionTimestamp\":\"2016-01-30T20:44:19.9059981Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"01ecaa51-4b50-48b6-9f5f-03de8f3c7742\",\"description\":\"\",\"eventDataId\":\"5fb812dd-5fa9-4cf8-9853-d5cb0750adb2\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"867ff8b9-5b5d-49ea-bf2b-bd9714eac6e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/events/5fb812dd-5fa9-4cf8-9853-d5cb0750adb2/ticks/635897834468851641\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112\",\"operationId\":\"01ecaa51-4b50-48b6-9f5f-03de8f3c7742\",\"operationName\":{\"value\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"localizedValue\":\"Update resource group\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"West US\\\",\\\"tags\\\":{}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:06.8851641Z\",\"submissionTimestamp\":\"2016-01-30T20:44:19.9059981Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"}]}", { 'cache-control': 'no-cache', +.get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') + .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"7bcee135-9980-46c5-a75a-b16ca5560eb8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"08f3aaa8-a1bb-4dd9-9850-6c15a33055df\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666/events/7bcee135-9980-46c5-a75a-b16ca5560eb8/ticks/635968061569156932\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"operationId\":\"190bf84d-ae38-4868-8e2e-93311ccd34ab\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:16.9156932Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.152819Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"c7d04977-8bc8-4798-b1dd-ff54d188eceb\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/c7d04977-8bc8-4798-b1dd-ff54d188eceb/ticks/635968061559322039\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-04-21T03:29:15.9322039Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"e09af290-9451-4126-9748-983a9f89d1fd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/e09af290-9451-4126-9748-983a9f89d1fd/ticks/635968061546666030\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:14.666603Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/validate/action\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"6633fa8e-bcb4-4900-821d-4be8e054f4f5\",\"description\":\"\",\"eventDataId\":\"6a493389-8a92-4559-aa6b-f357fc6f3fe5\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cd3801fd-bbfd-4f63-82dd-9da7783a6b4f\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"POST\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/6a493389-8a92-4559-aa6b-f357fc6f3fe5/ticks/635968061544679273\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"6633fa8e-bcb4-4900-821d-4be8e054f4f5\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/validate/action\",\"localizedValue\":\"Microsoft.Resources/deployments/validate/action\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-04-21T03:29:14.4679273Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.5014792Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/validate/action\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"6633fa8e-bcb4-4900-821d-4be8e054f4f5\",\"description\":\"\",\"eventDataId\":\"51c165be-2a1b-4deb-9e86-b2f3e6a7e03e\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cd3801fd-bbfd-4f63-82dd-9da7783a6b4f\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"POST\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/51c165be-2a1b-4deb-9e86-b2f3e6a7e03e/ticks/635968061529696311\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"6633fa8e-bcb4-4900-821d-4be8e054f4f5\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/validate/action\",\"localizedValue\":\"Microsoft.Resources/deployments/validate/action\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:12.9696311Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.5014792Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"c433860d-c796-4e3d-9013-4c70d3816195\",\"description\":\"\",\"eventDataId\":\"e9f75da3-4151-4feb-9cb3-794bef6a4660\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"5af4f06b-5fa8-4ae1-8344-0d5a9db1e1d7\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/events/e9f75da3-4151-4feb-9cb3-794bef6a4660/ticks/635968061525588554\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771\",\"operationId\":\"c433860d-c796-4e3d-9013-4c70d3816195\",\"operationName\":{\"value\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"localizedValue\":\"Update resource group\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null,\"responseBody\":\"{\\\"id\\\":\\\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771\\\",\\\"name\\\":\\\"xDeploymentTestGroup8771\\\",\\\"location\\\":\\\"westus\\\",\\\"tags\\\":{},\\\"properties\\\":{\\\"provisioningState\\\":\\\"Succeeded\\\"}}\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-04-21T03:29:12.5588554Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.1647909Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"c433860d-c796-4e3d-9013-4c70d3816195\",\"description\":\"\",\"eventDataId\":\"85f7bccd-ac75-4c3d-b030-0d73055d1e3d\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"5af4f06b-5fa8-4ae1-8344-0d5a9db1e1d7\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/events/85f7bccd-ac75-4c3d-b030-0d73055d1e3d/ticks/635968061523385068\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771\",\"operationId\":\"c433860d-c796-4e3d-9013-4c70d3816195\",\"operationName\":{\"value\":\"Microsoft.Resources/subscriptions/resourcegroups/write\",\"localizedValue\":\"Update resource group\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"West US\\\",\\\"tags\\\":{}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:12.3385068Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.1647909Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', - 'content-length': '80537', + 'content-length': '20885', 'content-type': 'application/json; charset=utf-8', expires: '-1', vary: 'Accept-Encoding', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - 'x-ms-request-id': 'WestUS_a09a67821ef64ae39062d784d89c1c6b_635897835146837811', + 'x-ms-request-id': 'EastUS_ae19b7ab72634a6485c11214bf387b87_635968061794195160', server: 'Microsoft-IIS/8.5', - 'x-ms-ratelimit-remaining-subscription-reads': '14996', - 'x-ms-correlation-request-id': 'd5b1fe9a-049f-4fd4-8084-6c03f2b7ca33', - 'x-ms-routing-request-id': 'WESTUS:20160130T204514Z:d5b1fe9a-049f-4fd4-8084-6c03f2b7ca33', - date: 'Sat, 30 Jan 2016 20:45:14 GMT', + 'x-ms-ratelimit-remaining-subscription-reads': '14994', + 'x-ms-correlation-request-id': '2f87a7b3-9d6c-49c5-b379-6ca0d55c9454', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032939Z:2f87a7b3-9d6c-49c5-b379-6ca0d55c9454', + date: 'Thu, 21 Apr 2016 03:29:39 GMT', connection: 'close' }); return result; }]]; - exports.randomTestIdsGenerated = function() { return ['xDeploymentTestGroup8112','Deploy15629'];}; \ No newline at end of file + exports.randomTestIdsGenerated = function() { return ['xDeploymentTestGroup8771','Deploy17756'];}; \ No newline at end of file diff --git a/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_the_last_deployment_by_default.nock.js b/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_the_last_deployment_by_default.nock.js index 60a28cc0af..abc101a37a 100644 --- a/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_the_last_deployment_by_default.nock.js +++ b/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_the_last_deployment_by_default.nock.js @@ -6,13 +6,13 @@ exports.getMockedProfile = function () { var newProfile = new profile.Profile(); newProfile.addSubscription(new profile.Subscription({ - id: '00977cdb-163f-435f-9c32-39ec8ae61f4d', - name: 'node', + id: '3ca49042-782a-4cc9-89b5-ee1b487fe115', + name: 'AzSdkCore1', user: { name: 'user@domain.example', type: 'user' }, - tenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47', + tenantId: '1449d5b7-8a83-47db-ae4c-9b03e888bad0', state: 'Enabled', registeredProviders: [], _eventsCount: '1', @@ -29,74 +29,74 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"name\":\"Deploy15629\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T20:45:04.5214215Z\",\"duration\":\"PT54.2927909S\",\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}]}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"name\":\"Deploy17756\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Running\",\"timestamp\":\"2016-04-21T03:29:16.0118938Z\",\"duration\":\"PT0.8963013S\",\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14993', - 'x-ms-request-id': '552a86fa-71bb-47b2-b9e6-280ea9f1e488', - 'x-ms-correlation-request-id': '552a86fa-71bb-47b2-b9e6-280ea9f1e488', - 'x-ms-routing-request-id': 'WESTUS:20160130T204516Z:552a86fa-71bb-47b2-b9e6-280ea9f1e488', + 'x-ms-ratelimit-remaining-subscription-reads': '14996', + 'x-ms-request-id': '66365b43-6def-49f3-9cc2-272550bdbc76', + 'x-ms-correlation-request-id': '66365b43-6def-49f3-9cc2-272550bdbc76', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032941Z:66365b43-6def-49f3-9cc2-272550bdbc76', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:15 GMT', + date: 'Thu, 21 Apr 2016 03:29:40 GMT', connection: 'close', - 'content-length': '6058' }); + 'content-length': '5372' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"name\":\"Deploy15629\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T20:45:04.5214215Z\",\"duration\":\"PT54.2927909S\",\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}]}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"name\":\"Deploy17756\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Running\",\"timestamp\":\"2016-04-21T03:29:16.0118938Z\",\"duration\":\"PT0.8963013S\",\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14993', - 'x-ms-request-id': '552a86fa-71bb-47b2-b9e6-280ea9f1e488', - 'x-ms-correlation-request-id': '552a86fa-71bb-47b2-b9e6-280ea9f1e488', - 'x-ms-routing-request-id': 'WESTUS:20160130T204516Z:552a86fa-71bb-47b2-b9e6-280ea9f1e488', + 'x-ms-ratelimit-remaining-subscription-reads': '14996', + 'x-ms-request-id': '66365b43-6def-49f3-9cc2-272550bdbc76', + 'x-ms-correlation-request-id': '66365b43-6def-49f3-9cc2-272550bdbc76', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032941Z:66365b43-6def-49f3-9cc2-272550bdbc76', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:15 GMT', + date: 'Thu, 21 Apr 2016 03:29:40 GMT', connection: 'close', - 'content-length': '6058' }); + 'content-length': '5372' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') .filteringPath(function (path) { return path.slice(0, path.indexOf('&')); }) -.get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') - .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"81507804-44fd-403e-a004-183e4c1c2f3a\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/81507804-44fd-403e-a004-183e4c1c2f3a/ticks/635897834845576399\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:44.5576399Z\",\"submissionTimestamp\":\"2016-01-30T20:45:00.1488242Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"1d8201f1-bdef-4030-a628-9824d567d98e\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/1d8201f1-bdef-4030-a628-9824d567d98e/ticks/635897834764237635\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"4680f073-2e10-45cc-b582-4becdcc0fa08\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.4237635Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"11461a07-66d6-48bb-b37a-3697f1cf262b\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/11461a07-66d6-48bb-b37a-3697f1cf262b/ticks/635897834760908381\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"574a127c-796e-46c6-8bff-2be1d41d013e\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.0908381Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3dcdf9b3-21d3-40b7-a919-7beadb184dc3\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/3dcdf9b3-21d3-40b7-a919-7beadb184dc3/ticks/635897834739073368\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:33.9073368Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"df82fddd-1362-451d-8bfa-59cc95b77236\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/df82fddd-1362-451d-8bfa-59cc95b77236/ticks/635897834714010462\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.4010462Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"64f18084-1599-4410-8a8a-b09318368ca8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/64f18084-1599-4410-8a8a-b09318368ca8/ticks/635897834713830947\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.3830947Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3354531e-e64a-43ed-a46f-ad29592377d8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/3354531e-e64a-43ed-a46f-ad29592377d8/ticks/635897834707750254\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.7750254Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"635bc019-0f31-4207-9e62-bac951886ffd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/635bc019-0f31-4207-9e62-bac951886ffd/ticks/635897834701487199\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.1487199Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1595084Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"97cce7da-32f2-4f68-b045-4081c45ce89d\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/97cce7da-32f2-4f68-b045-4081c45ce89d/ticks/635897834688736557\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"be2e5a59-f6cc-4ee8-aaf7-535ea9f7bcc4\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.8736557Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"d10d5051-649a-40fa-a0eb-2e91915098c8\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/d10d5051-649a-40fa-a0eb-2e91915098c8/ticks/635897834681382642\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a00cd931-247f-49b7-a7e8-8355e495acc8\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.1382642Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5d54d09a-ec0d-449a-b663-ef44d0f31483\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/5d54d09a-ec0d-449a-b663-ef44d0f31483/ticks/635897834679699614\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"c6cb0a54-1788-4aee-8992-749df3cfa823\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.9699614Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e80ba99-cdd2-4d69-9ce8-632892fa5b59\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/3e80ba99-cdd2-4d69-9ce8-632892fa5b59/ticks/635897834678400623\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"6f217912-4d89-466e-9676-f359a688b1d6\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.8400623Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"6d7f7b82-c391-476d-90c9-df21a6a5907e\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/6d7f7b82-c391-476d-90c9-df21a6a5907e/ticks/635897834629665163\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.9665163Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"8c256639-77dd-4c83-97cb-cc73b8cd97fb\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/8c256639-77dd-4c83-97cb-cc73b8cd97fb/ticks/635897834624509096\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.4509096Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0013722Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"f8130f44-2401-4f70-881d-b6ee0bcea66d\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/f8130f44-2401-4f70-881d-b6ee0bcea66d/ticks/635897834617843001\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7843001Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"0ce74987-0cc3-4d9d-9e14-656285941f8b\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/0ce74987-0cc3-4d9d-9e14-656285941f8b/ticks/635897834617030874\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"East US\\\",\\\"tags\\\":{\\\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\":\\\"Resource\\\"},\\\"properties\\\":{\\\"profiles\\\":[{\\\"name\\\":\\\"Default\\\",\\\"capacity\\\":{\\\"minimum\\\":\\\"1\\\",\\\"maximum\\\":\\\"2\\\",\\\"default\\\":\\\"1\\\"},\\\"rules\\\":[{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT10M\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"GreaterThan\\\",\\\"threshold\\\":80},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Increase\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT10M\\\"}},{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT1H\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"LessThan\\\",\\\"threshold\\\":60},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Decrease\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT1H\\\"}}]}],\\\"enabled\\\":false,\\\"name\\\":\\\"xDeploymentTestHost5985-xDeploymentTestGroup8112\\\",\\\"targetResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\"}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7030874Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5b91b4a3-5a9a-449f-aabd-e9491c76c408\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/5b91b4a3-5a9a-449f-aabd-e9491c76c408/ticks/635897834605702569\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a4880b3a-bcca-4af7-be9e-ebe5c41f0bb1\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:20.5702569Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.3630067Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e56b70c-80aa-4ef5-8d40-c679844ca8c3\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/3e56b70c-80aa-4ef5-8d40-c679844ca8c3/ticks/635897834542692920\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:14.269292Z\",\"submissionTimestamp\":\"2016-01-30T20:44:29.5305932Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"2a5785c1-d8b4-4448-be7e-78b70f8e4105\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/2a5785c1-d8b4-4448-be7e-78b70f8e4105/ticks/635897834516702266\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:11.6702266Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"733ba68b-0bbf-4b30-b7c1-8c6b963e98f0\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/733ba68b-0bbf-4b30-b7c1-8c6b963e98f0/ticks/635897834497327895\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:09.7327895Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"}]}", { 'cache-control': 'no-cache', +.get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') + .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"a28cbc21-8082-4f97-becb-3d0f872a081f\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"618f9ec6-43c5-4f04-a9ca-ceb615fab61b\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/events/a28cbc21-8082-4f97-becb-3d0f872a081f/ticks/635968061648889432\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"operationId\":\"a58cd8bb-3a50-4a69-a23a-4f1013cd3927\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:24.8889432Z\",\"submissionTimestamp\":\"2016-04-21T03:29:39.9403964Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"0d7a9433-20e3-4383-9e5f-6f1e229e7d18\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"e3fab87b-d7aa-4128-9912-938a07608e82\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost27666/events/0d7a9433-20e3-4383-9e5f-6f1e229e7d18/ticks/635968061643406651\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"operationId\":\"07827ab2-e63a-4ab6-b903-b8c76150ebdc\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:24.3406651Z\",\"submissionTimestamp\":\"2016-04-21T03:29:40.6670697Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"7bcee135-9980-46c5-a75a-b16ca5560eb8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"08f3aaa8-a1bb-4dd9-9850-6c15a33055df\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666/events/7bcee135-9980-46c5-a75a-b16ca5560eb8/ticks/635968061569156932\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"operationId\":\"190bf84d-ae38-4868-8e2e-93311ccd34ab\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:16.9156932Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.152819Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"c7d04977-8bc8-4798-b1dd-ff54d188eceb\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/c7d04977-8bc8-4798-b1dd-ff54d188eceb/ticks/635968061559322039\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-04-21T03:29:15.9322039Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"e09af290-9451-4126-9748-983a9f89d1fd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/e09af290-9451-4126-9748-983a9f89d1fd/ticks/635968061546666030\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:14.666603Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', - 'content-length': '66360', + 'content-length': '14722', 'content-type': 'application/json; charset=utf-8', expires: '-1', vary: 'Accept-Encoding', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - 'x-ms-request-id': 'WestUS_19611ac9773641d7a4d5ffafd49f5111_635897835212965152', + 'x-ms-request-id': 'EastUS_27b170a1067943cabcedd20b548c7713_635968061820039743', server: 'Microsoft-IIS/8.5', - 'x-ms-ratelimit-remaining-subscription-reads': '14993', - 'x-ms-correlation-request-id': '29458b4f-adb8-4bd1-ab36-e061370f479e', - 'x-ms-routing-request-id': 'WESTUS:20160130T204521Z:29458b4f-adb8-4bd1-ab36-e061370f479e', - date: 'Sat, 30 Jan 2016 20:45:20 GMT', + 'x-ms-ratelimit-remaining-subscription-reads': '14996', + 'x-ms-correlation-request-id': '01e3e520-eefa-43d6-adcb-44266ffce21b', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032942Z:01e3e520-eefa-43d6-adcb-44266ffce21b', + date: 'Thu, 21 Apr 2016 03:29:41 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringPath(function (path) { return path.slice(0, path.indexOf('&')); }) -.get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') - .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"81507804-44fd-403e-a004-183e4c1c2f3a\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/81507804-44fd-403e-a004-183e4c1c2f3a/ticks/635897834845576399\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:44.5576399Z\",\"submissionTimestamp\":\"2016-01-30T20:45:00.1488242Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"1d8201f1-bdef-4030-a628-9824d567d98e\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/1d8201f1-bdef-4030-a628-9824d567d98e/ticks/635897834764237635\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"4680f073-2e10-45cc-b582-4becdcc0fa08\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.4237635Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"11461a07-66d6-48bb-b37a-3697f1cf262b\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/11461a07-66d6-48bb-b37a-3697f1cf262b/ticks/635897834760908381\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"574a127c-796e-46c6-8bff-2be1d41d013e\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.0908381Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3dcdf9b3-21d3-40b7-a919-7beadb184dc3\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/3dcdf9b3-21d3-40b7-a919-7beadb184dc3/ticks/635897834739073368\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:33.9073368Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"df82fddd-1362-451d-8bfa-59cc95b77236\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/df82fddd-1362-451d-8bfa-59cc95b77236/ticks/635897834714010462\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.4010462Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"64f18084-1599-4410-8a8a-b09318368ca8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/64f18084-1599-4410-8a8a-b09318368ca8/ticks/635897834713830947\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.3830947Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3354531e-e64a-43ed-a46f-ad29592377d8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/3354531e-e64a-43ed-a46f-ad29592377d8/ticks/635897834707750254\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.7750254Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"635bc019-0f31-4207-9e62-bac951886ffd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/635bc019-0f31-4207-9e62-bac951886ffd/ticks/635897834701487199\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.1487199Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1595084Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"97cce7da-32f2-4f68-b045-4081c45ce89d\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/97cce7da-32f2-4f68-b045-4081c45ce89d/ticks/635897834688736557\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"be2e5a59-f6cc-4ee8-aaf7-535ea9f7bcc4\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.8736557Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"d10d5051-649a-40fa-a0eb-2e91915098c8\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/d10d5051-649a-40fa-a0eb-2e91915098c8/ticks/635897834681382642\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a00cd931-247f-49b7-a7e8-8355e495acc8\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.1382642Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5d54d09a-ec0d-449a-b663-ef44d0f31483\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/5d54d09a-ec0d-449a-b663-ef44d0f31483/ticks/635897834679699614\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"c6cb0a54-1788-4aee-8992-749df3cfa823\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.9699614Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e80ba99-cdd2-4d69-9ce8-632892fa5b59\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/3e80ba99-cdd2-4d69-9ce8-632892fa5b59/ticks/635897834678400623\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"6f217912-4d89-466e-9676-f359a688b1d6\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.8400623Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"6d7f7b82-c391-476d-90c9-df21a6a5907e\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/6d7f7b82-c391-476d-90c9-df21a6a5907e/ticks/635897834629665163\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.9665163Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"8c256639-77dd-4c83-97cb-cc73b8cd97fb\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/8c256639-77dd-4c83-97cb-cc73b8cd97fb/ticks/635897834624509096\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.4509096Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0013722Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"f8130f44-2401-4f70-881d-b6ee0bcea66d\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/f8130f44-2401-4f70-881d-b6ee0bcea66d/ticks/635897834617843001\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7843001Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"0ce74987-0cc3-4d9d-9e14-656285941f8b\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/0ce74987-0cc3-4d9d-9e14-656285941f8b/ticks/635897834617030874\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"East US\\\",\\\"tags\\\":{\\\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\":\\\"Resource\\\"},\\\"properties\\\":{\\\"profiles\\\":[{\\\"name\\\":\\\"Default\\\",\\\"capacity\\\":{\\\"minimum\\\":\\\"1\\\",\\\"maximum\\\":\\\"2\\\",\\\"default\\\":\\\"1\\\"},\\\"rules\\\":[{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT10M\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"GreaterThan\\\",\\\"threshold\\\":80},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Increase\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT10M\\\"}},{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT1H\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"LessThan\\\",\\\"threshold\\\":60},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Decrease\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT1H\\\"}}]}],\\\"enabled\\\":false,\\\"name\\\":\\\"xDeploymentTestHost5985-xDeploymentTestGroup8112\\\",\\\"targetResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\"}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7030874Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5b91b4a3-5a9a-449f-aabd-e9491c76c408\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/5b91b4a3-5a9a-449f-aabd-e9491c76c408/ticks/635897834605702569\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a4880b3a-bcca-4af7-be9e-ebe5c41f0bb1\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:20.5702569Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.3630067Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e56b70c-80aa-4ef5-8d40-c679844ca8c3\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/3e56b70c-80aa-4ef5-8d40-c679844ca8c3/ticks/635897834542692920\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:14.269292Z\",\"submissionTimestamp\":\"2016-01-30T20:44:29.5305932Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"2a5785c1-d8b4-4448-be7e-78b70f8e4105\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/2a5785c1-d8b4-4448-be7e-78b70f8e4105/ticks/635897834516702266\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:11.6702266Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"733ba68b-0bbf-4b30-b7c1-8c6b963e98f0\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/733ba68b-0bbf-4b30-b7c1-8c6b963e98f0/ticks/635897834497327895\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:09.7327895Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"}]}", { 'cache-control': 'no-cache', +.get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') + .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"a28cbc21-8082-4f97-becb-3d0f872a081f\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"618f9ec6-43c5-4f04-a9ca-ceb615fab61b\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/events/a28cbc21-8082-4f97-becb-3d0f872a081f/ticks/635968061648889432\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"operationId\":\"a58cd8bb-3a50-4a69-a23a-4f1013cd3927\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:24.8889432Z\",\"submissionTimestamp\":\"2016-04-21T03:29:39.9403964Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"0d7a9433-20e3-4383-9e5f-6f1e229e7d18\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"e3fab87b-d7aa-4128-9912-938a07608e82\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost27666/events/0d7a9433-20e3-4383-9e5f-6f1e229e7d18/ticks/635968061643406651\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"operationId\":\"07827ab2-e63a-4ab6-b903-b8c76150ebdc\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:24.3406651Z\",\"submissionTimestamp\":\"2016-04-21T03:29:40.6670697Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"7bcee135-9980-46c5-a75a-b16ca5560eb8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"08f3aaa8-a1bb-4dd9-9850-6c15a33055df\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666/events/7bcee135-9980-46c5-a75a-b16ca5560eb8/ticks/635968061569156932\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"operationId\":\"190bf84d-ae38-4868-8e2e-93311ccd34ab\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:16.9156932Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.152819Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"c7d04977-8bc8-4798-b1dd-ff54d188eceb\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/c7d04977-8bc8-4798-b1dd-ff54d188eceb/ticks/635968061559322039\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-04-21T03:29:15.9322039Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"e09af290-9451-4126-9748-983a9f89d1fd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/e09af290-9451-4126-9748-983a9f89d1fd/ticks/635968061546666030\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:14.666603Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', - 'content-length': '66360', + 'content-length': '14722', 'content-type': 'application/json; charset=utf-8', expires: '-1', vary: 'Accept-Encoding', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - 'x-ms-request-id': 'WestUS_19611ac9773641d7a4d5ffafd49f5111_635897835212965152', + 'x-ms-request-id': 'EastUS_27b170a1067943cabcedd20b548c7713_635968061820039743', server: 'Microsoft-IIS/8.5', - 'x-ms-ratelimit-remaining-subscription-reads': '14993', - 'x-ms-correlation-request-id': '29458b4f-adb8-4bd1-ab36-e061370f479e', - 'x-ms-routing-request-id': 'WESTUS:20160130T204521Z:29458b4f-adb8-4bd1-ab36-e061370f479e', - date: 'Sat, 30 Jan 2016 20:45:20 GMT', + 'x-ms-ratelimit-remaining-subscription-reads': '14996', + 'x-ms-correlation-request-id': '01e3e520-eefa-43d6-adcb-44266ffce21b', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032942Z:01e3e520-eefa-43d6-adcb-44266ffce21b', + date: 'Thu, 21 Apr 2016 03:29:41 GMT', connection: 'close' }); return result; }]]; \ No newline at end of file diff --git a/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_the_last_deployment_with_the_--last-deployment_switch.nock.js b/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_the_last_deployment_with_the_--last-deployment_switch.nock.js index f089daf5ee..3ab476a437 100644 --- a/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_the_last_deployment_with_the_--last-deployment_switch.nock.js +++ b/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_the_last_deployment_with_the_--last-deployment_switch.nock.js @@ -6,13 +6,13 @@ exports.getMockedProfile = function () { var newProfile = new profile.Profile(); newProfile.addSubscription(new profile.Subscription({ - id: '00977cdb-163f-435f-9c32-39ec8ae61f4d', - name: 'node', + id: '3ca49042-782a-4cc9-89b5-ee1b487fe115', + name: 'AzSdkCore1', user: { name: 'user@domain.example', type: 'user' }, - tenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47', + tenantId: '1449d5b7-8a83-47db-ae4c-9b03e888bad0', state: 'Enabled', registeredProviders: [], _eventsCount: '1', @@ -29,74 +29,74 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"name\":\"Deploy15629\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T20:45:04.5214215Z\",\"duration\":\"PT54.2927909S\",\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}]}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"name\":\"Deploy17756\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Running\",\"timestamp\":\"2016-04-21T03:29:16.0118938Z\",\"duration\":\"PT0.8963013S\",\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14996', - 'x-ms-request-id': 'be4b3a8a-6ef5-4931-a476-a7787c2be39d', - 'x-ms-correlation-request-id': 'be4b3a8a-6ef5-4931-a476-a7787c2be39d', - 'x-ms-routing-request-id': 'WESTUS:20160130T204515Z:be4b3a8a-6ef5-4931-a476-a7787c2be39d', + 'x-ms-ratelimit-remaining-subscription-reads': '14998', + 'x-ms-request-id': '5fdc6f56-ed69-4591-977f-8523cb0cf92f', + 'x-ms-correlation-request-id': '5fdc6f56-ed69-4591-977f-8523cb0cf92f', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032939Z:5fdc6f56-ed69-4591-977f-8523cb0cf92f', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:14 GMT', + date: 'Thu, 21 Apr 2016 03:29:39 GMT', connection: 'close', - 'content-length': '6058' }); + 'content-length': '5372' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') - .reply(200, "{\"value\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"name\":\"Deploy15629\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T20:45:04.5214215Z\",\"duration\":\"PT54.2927909S\",\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}]}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/?$top=1&api-version=2016-02-01') + .reply(200, "{\"value\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"name\":\"Deploy17756\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Running\",\"timestamp\":\"2016-04-21T03:29:16.0118938Z\",\"duration\":\"PT0.8963013S\",\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14996', - 'x-ms-request-id': 'be4b3a8a-6ef5-4931-a476-a7787c2be39d', - 'x-ms-correlation-request-id': 'be4b3a8a-6ef5-4931-a476-a7787c2be39d', - 'x-ms-routing-request-id': 'WESTUS:20160130T204515Z:be4b3a8a-6ef5-4931-a476-a7787c2be39d', + 'x-ms-ratelimit-remaining-subscription-reads': '14998', + 'x-ms-request-id': '5fdc6f56-ed69-4591-977f-8523cb0cf92f', + 'x-ms-correlation-request-id': '5fdc6f56-ed69-4591-977f-8523cb0cf92f', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032939Z:5fdc6f56-ed69-4591-977f-8523cb0cf92f', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:14 GMT', + date: 'Thu, 21 Apr 2016 03:29:39 GMT', connection: 'close', - 'content-length': '6058' }); + 'content-length': '5372' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') .filteringPath(function (path) { return path.slice(0, path.indexOf('&')); }) -.get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') - .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"81507804-44fd-403e-a004-183e4c1c2f3a\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/81507804-44fd-403e-a004-183e4c1c2f3a/ticks/635897834845576399\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:44.5576399Z\",\"submissionTimestamp\":\"2016-01-30T20:45:00.1488242Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"1d8201f1-bdef-4030-a628-9824d567d98e\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/1d8201f1-bdef-4030-a628-9824d567d98e/ticks/635897834764237635\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"4680f073-2e10-45cc-b582-4becdcc0fa08\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.4237635Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"11461a07-66d6-48bb-b37a-3697f1cf262b\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/11461a07-66d6-48bb-b37a-3697f1cf262b/ticks/635897834760908381\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"574a127c-796e-46c6-8bff-2be1d41d013e\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.0908381Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3dcdf9b3-21d3-40b7-a919-7beadb184dc3\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/3dcdf9b3-21d3-40b7-a919-7beadb184dc3/ticks/635897834739073368\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:33.9073368Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"df82fddd-1362-451d-8bfa-59cc95b77236\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/df82fddd-1362-451d-8bfa-59cc95b77236/ticks/635897834714010462\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.4010462Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"64f18084-1599-4410-8a8a-b09318368ca8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/64f18084-1599-4410-8a8a-b09318368ca8/ticks/635897834713830947\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.3830947Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3354531e-e64a-43ed-a46f-ad29592377d8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/3354531e-e64a-43ed-a46f-ad29592377d8/ticks/635897834707750254\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.7750254Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"635bc019-0f31-4207-9e62-bac951886ffd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/635bc019-0f31-4207-9e62-bac951886ffd/ticks/635897834701487199\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.1487199Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1595084Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"97cce7da-32f2-4f68-b045-4081c45ce89d\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/97cce7da-32f2-4f68-b045-4081c45ce89d/ticks/635897834688736557\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"be2e5a59-f6cc-4ee8-aaf7-535ea9f7bcc4\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.8736557Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"d10d5051-649a-40fa-a0eb-2e91915098c8\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/d10d5051-649a-40fa-a0eb-2e91915098c8/ticks/635897834681382642\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a00cd931-247f-49b7-a7e8-8355e495acc8\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.1382642Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5d54d09a-ec0d-449a-b663-ef44d0f31483\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/5d54d09a-ec0d-449a-b663-ef44d0f31483/ticks/635897834679699614\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"c6cb0a54-1788-4aee-8992-749df3cfa823\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.9699614Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e80ba99-cdd2-4d69-9ce8-632892fa5b59\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/3e80ba99-cdd2-4d69-9ce8-632892fa5b59/ticks/635897834678400623\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"6f217912-4d89-466e-9676-f359a688b1d6\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.8400623Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"6d7f7b82-c391-476d-90c9-df21a6a5907e\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/6d7f7b82-c391-476d-90c9-df21a6a5907e/ticks/635897834629665163\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.9665163Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"8c256639-77dd-4c83-97cb-cc73b8cd97fb\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/8c256639-77dd-4c83-97cb-cc73b8cd97fb/ticks/635897834624509096\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.4509096Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0013722Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"f8130f44-2401-4f70-881d-b6ee0bcea66d\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/f8130f44-2401-4f70-881d-b6ee0bcea66d/ticks/635897834617843001\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7843001Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"0ce74987-0cc3-4d9d-9e14-656285941f8b\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/0ce74987-0cc3-4d9d-9e14-656285941f8b/ticks/635897834617030874\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"East US\\\",\\\"tags\\\":{\\\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\":\\\"Resource\\\"},\\\"properties\\\":{\\\"profiles\\\":[{\\\"name\\\":\\\"Default\\\",\\\"capacity\\\":{\\\"minimum\\\":\\\"1\\\",\\\"maximum\\\":\\\"2\\\",\\\"default\\\":\\\"1\\\"},\\\"rules\\\":[{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT10M\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"GreaterThan\\\",\\\"threshold\\\":80},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Increase\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT10M\\\"}},{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT1H\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"LessThan\\\",\\\"threshold\\\":60},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Decrease\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT1H\\\"}}]}],\\\"enabled\\\":false,\\\"name\\\":\\\"xDeploymentTestHost5985-xDeploymentTestGroup8112\\\",\\\"targetResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\"}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7030874Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5b91b4a3-5a9a-449f-aabd-e9491c76c408\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/5b91b4a3-5a9a-449f-aabd-e9491c76c408/ticks/635897834605702569\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a4880b3a-bcca-4af7-be9e-ebe5c41f0bb1\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:20.5702569Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.3630067Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e56b70c-80aa-4ef5-8d40-c679844ca8c3\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/3e56b70c-80aa-4ef5-8d40-c679844ca8c3/ticks/635897834542692920\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:14.269292Z\",\"submissionTimestamp\":\"2016-01-30T20:44:29.5305932Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"2a5785c1-d8b4-4448-be7e-78b70f8e4105\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/2a5785c1-d8b4-4448-be7e-78b70f8e4105/ticks/635897834516702266\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:11.6702266Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"733ba68b-0bbf-4b30-b7c1-8c6b963e98f0\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/733ba68b-0bbf-4b30-b7c1-8c6b963e98f0/ticks/635897834497327895\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:09.7327895Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"}]}", { 'cache-control': 'no-cache', +.get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') + .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"7bcee135-9980-46c5-a75a-b16ca5560eb8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"08f3aaa8-a1bb-4dd9-9850-6c15a33055df\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666/events/7bcee135-9980-46c5-a75a-b16ca5560eb8/ticks/635968061569156932\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"operationId\":\"190bf84d-ae38-4868-8e2e-93311ccd34ab\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:16.9156932Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.152819Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"c7d04977-8bc8-4798-b1dd-ff54d188eceb\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/c7d04977-8bc8-4798-b1dd-ff54d188eceb/ticks/635968061559322039\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-04-21T03:29:15.9322039Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"e09af290-9451-4126-9748-983a9f89d1fd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/e09af290-9451-4126-9748-983a9f89d1fd/ticks/635968061546666030\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:14.666603Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', - 'content-length': '66360', + 'content-length': '8883', 'content-type': 'application/json; charset=utf-8', expires: '-1', vary: 'Accept-Encoding', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - 'x-ms-request-id': 'WestUS_fd61bea42df74fda9d0932ff07bd8cec_635897835156501535', + 'x-ms-request-id': 'EastUS_a2d678b7525c4bcabba6bf8ba596bd7a_635968061806099065', server: 'Microsoft-IIS/8.5', - 'x-ms-ratelimit-remaining-subscription-reads': '14994', - 'x-ms-correlation-request-id': '28b19d98-2cf7-4e9a-a085-783a4a537b10', - 'x-ms-routing-request-id': 'WESTUS:20160130T204515Z:28b19d98-2cf7-4e9a-a085-783a4a537b10', - date: 'Sat, 30 Jan 2016 20:45:14 GMT', + 'x-ms-ratelimit-remaining-subscription-reads': '14998', + 'x-ms-correlation-request-id': 'f400312e-21bf-4cd1-9d7b-0afb6f5a3346', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032940Z:f400312e-21bf-4cd1-9d7b-0afb6f5a3346', + date: 'Thu, 21 Apr 2016 03:29:40 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringPath(function (path) { return path.slice(0, path.indexOf('&')); }) -.get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') - .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"81507804-44fd-403e-a004-183e4c1c2f3a\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/81507804-44fd-403e-a004-183e4c1c2f3a/ticks/635897834845576399\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:44.5576399Z\",\"submissionTimestamp\":\"2016-01-30T20:45:00.1488242Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"1d8201f1-bdef-4030-a628-9824d567d98e\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/1d8201f1-bdef-4030-a628-9824d567d98e/ticks/635897834764237635\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"4680f073-2e10-45cc-b582-4becdcc0fa08\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.4237635Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"11461a07-66d6-48bb-b37a-3697f1cf262b\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/11461a07-66d6-48bb-b37a-3697f1cf262b/ticks/635897834760908381\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"574a127c-796e-46c6-8bff-2be1d41d013e\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.0908381Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3dcdf9b3-21d3-40b7-a919-7beadb184dc3\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/3dcdf9b3-21d3-40b7-a919-7beadb184dc3/ticks/635897834739073368\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:33.9073368Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"df82fddd-1362-451d-8bfa-59cc95b77236\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/df82fddd-1362-451d-8bfa-59cc95b77236/ticks/635897834714010462\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.4010462Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"64f18084-1599-4410-8a8a-b09318368ca8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/64f18084-1599-4410-8a8a-b09318368ca8/ticks/635897834713830947\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.3830947Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3354531e-e64a-43ed-a46f-ad29592377d8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/3354531e-e64a-43ed-a46f-ad29592377d8/ticks/635897834707750254\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.7750254Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"635bc019-0f31-4207-9e62-bac951886ffd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/635bc019-0f31-4207-9e62-bac951886ffd/ticks/635897834701487199\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.1487199Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1595084Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"97cce7da-32f2-4f68-b045-4081c45ce89d\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/97cce7da-32f2-4f68-b045-4081c45ce89d/ticks/635897834688736557\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"be2e5a59-f6cc-4ee8-aaf7-535ea9f7bcc4\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.8736557Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"d10d5051-649a-40fa-a0eb-2e91915098c8\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/d10d5051-649a-40fa-a0eb-2e91915098c8/ticks/635897834681382642\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a00cd931-247f-49b7-a7e8-8355e495acc8\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.1382642Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5d54d09a-ec0d-449a-b663-ef44d0f31483\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/5d54d09a-ec0d-449a-b663-ef44d0f31483/ticks/635897834679699614\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"c6cb0a54-1788-4aee-8992-749df3cfa823\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.9699614Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e80ba99-cdd2-4d69-9ce8-632892fa5b59\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/3e80ba99-cdd2-4d69-9ce8-632892fa5b59/ticks/635897834678400623\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"6f217912-4d89-466e-9676-f359a688b1d6\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.8400623Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"6d7f7b82-c391-476d-90c9-df21a6a5907e\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/6d7f7b82-c391-476d-90c9-df21a6a5907e/ticks/635897834629665163\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.9665163Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"8c256639-77dd-4c83-97cb-cc73b8cd97fb\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/8c256639-77dd-4c83-97cb-cc73b8cd97fb/ticks/635897834624509096\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.4509096Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0013722Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"f8130f44-2401-4f70-881d-b6ee0bcea66d\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/f8130f44-2401-4f70-881d-b6ee0bcea66d/ticks/635897834617843001\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7843001Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"0ce74987-0cc3-4d9d-9e14-656285941f8b\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/0ce74987-0cc3-4d9d-9e14-656285941f8b/ticks/635897834617030874\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"East US\\\",\\\"tags\\\":{\\\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\":\\\"Resource\\\"},\\\"properties\\\":{\\\"profiles\\\":[{\\\"name\\\":\\\"Default\\\",\\\"capacity\\\":{\\\"minimum\\\":\\\"1\\\",\\\"maximum\\\":\\\"2\\\",\\\"default\\\":\\\"1\\\"},\\\"rules\\\":[{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT10M\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"GreaterThan\\\",\\\"threshold\\\":80},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Increase\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT10M\\\"}},{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT1H\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"LessThan\\\",\\\"threshold\\\":60},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Decrease\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT1H\\\"}}]}],\\\"enabled\\\":false,\\\"name\\\":\\\"xDeploymentTestHost5985-xDeploymentTestGroup8112\\\",\\\"targetResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\"}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7030874Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5b91b4a3-5a9a-449f-aabd-e9491c76c408\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/5b91b4a3-5a9a-449f-aabd-e9491c76c408/ticks/635897834605702569\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a4880b3a-bcca-4af7-be9e-ebe5c41f0bb1\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:20.5702569Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.3630067Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e56b70c-80aa-4ef5-8d40-c679844ca8c3\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/3e56b70c-80aa-4ef5-8d40-c679844ca8c3/ticks/635897834542692920\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:14.269292Z\",\"submissionTimestamp\":\"2016-01-30T20:44:29.5305932Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"2a5785c1-d8b4-4448-be7e-78b70f8e4105\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/2a5785c1-d8b4-4448-be7e-78b70f8e4105/ticks/635897834516702266\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:11.6702266Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"733ba68b-0bbf-4b30-b7c1-8c6b963e98f0\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/733ba68b-0bbf-4b30-b7c1-8c6b963e98f0/ticks/635897834497327895\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:09.7327895Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"}]}", { 'cache-control': 'no-cache', +.get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') + .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"7bcee135-9980-46c5-a75a-b16ca5560eb8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"08f3aaa8-a1bb-4dd9-9850-6c15a33055df\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666/events/7bcee135-9980-46c5-a75a-b16ca5560eb8/ticks/635968061569156932\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"operationId\":\"190bf84d-ae38-4868-8e2e-93311ccd34ab\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:16.9156932Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.152819Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"c7d04977-8bc8-4798-b1dd-ff54d188eceb\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/c7d04977-8bc8-4798-b1dd-ff54d188eceb/ticks/635968061559322039\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-04-21T03:29:15.9322039Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"e09af290-9451-4126-9748-983a9f89d1fd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/e09af290-9451-4126-9748-983a9f89d1fd/ticks/635968061546666030\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:14.666603Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', - 'content-length': '66360', + 'content-length': '8883', 'content-type': 'application/json; charset=utf-8', expires: '-1', vary: 'Accept-Encoding', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - 'x-ms-request-id': 'WestUS_fd61bea42df74fda9d0932ff07bd8cec_635897835156501535', + 'x-ms-request-id': 'EastUS_a2d678b7525c4bcabba6bf8ba596bd7a_635968061806099065', server: 'Microsoft-IIS/8.5', - 'x-ms-ratelimit-remaining-subscription-reads': '14994', - 'x-ms-correlation-request-id': '28b19d98-2cf7-4e9a-a085-783a4a537b10', - 'x-ms-routing-request-id': 'WESTUS:20160130T204515Z:28b19d98-2cf7-4e9a-a085-783a4a537b10', - date: 'Sat, 30 Jan 2016 20:45:14 GMT', + 'x-ms-ratelimit-remaining-subscription-reads': '14998', + 'x-ms-correlation-request-id': 'f400312e-21bf-4cd1-9d7b-0afb6f5a3346', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032940Z:f400312e-21bf-4cd1-9d7b-0afb6f5a3346', + date: 'Thu, 21 Apr 2016 03:29:40 GMT', connection: 'close' }); return result; }]]; \ No newline at end of file diff --git a/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_the_specified_deployment.nock.js b/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_the_specified_deployment.nock.js index 7443c662d5..8c2784b43a 100644 --- a/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_the_specified_deployment.nock.js +++ b/test/recordings/arm-cli-group-tests/arm_group_log_show_should_return_logs_of_the_specified_deployment.nock.js @@ -6,13 +6,13 @@ exports.getMockedProfile = function () { var newProfile = new profile.Profile(); newProfile.addSubscription(new profile.Subscription({ - id: '00977cdb-163f-435f-9c32-39ec8ae61f4d', - name: 'node', + id: '3ca49042-782a-4cc9-89b5-ee1b487fe115', + name: 'AzSdkCore1', user: { name: 'user@domain.example', type: 'user' }, - tenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47', + tenantId: '1449d5b7-8a83-47db-ae4c-9b03e888bad0', state: 'Enabled', registeredProviders: [], _eventsCount: '1', @@ -29,74 +29,74 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629?api-version=2016-02-01') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"name\":\"Deploy15629\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T20:45:04.5214215Z\",\"duration\":\"PT54.2927909S\",\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756?api-version=2016-02-01') + .reply(200, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"name\":\"Deploy17756\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Running\",\"timestamp\":\"2016-04-21T03:29:16.0118938Z\",\"duration\":\"PT0.8963013S\",\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14991', - 'x-ms-request-id': 'bdf52650-1a12-4f8c-ad39-4ac996355dda', - 'x-ms-correlation-request-id': 'bdf52650-1a12-4f8c-ad39-4ac996355dda', - 'x-ms-routing-request-id': 'WESTUS:20160130T204521Z:bdf52650-1a12-4f8c-ad39-4ac996355dda', + 'x-ms-ratelimit-remaining-subscription-reads': '14996', + 'x-ms-request-id': '9ba30047-eb94-4f75-b358-2daaa9425483', + 'x-ms-correlation-request-id': '9ba30047-eb94-4f75-b358-2daaa9425483', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032942Z:9ba30047-eb94-4f75-b358-2daaa9425483', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:20 GMT', + date: 'Thu, 21 Apr 2016 03:29:41 GMT', connection: 'close', - 'content-length': '6046' }); + 'content-length': '5360' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629?api-version=2016-02-01') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"name\":\"Deploy15629\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite854\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost5985\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Basic\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2016-01-30T20:45:04.5214215Z\",\"duration\":\"PT54.2927909S\",\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/Sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite854/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite854\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost5985\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost5985\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite854\"}],\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite854\"}],\"outputs\":{\"exampleOutput\":{\"type\":\"String\",\"value\":\"stringToConcatenate\"}},\"outputResources\":[{\"id\":\"microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},{\"id\":\"microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},{\"id\":\"microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},{\"id\":\"microsoft.insights/components/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854\"},{\"id\":\"Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"}]}}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756?api-version=2016-02-01') + .reply(200, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"name\":\"Deploy17756\",\"properties\":{\"parameters\":{\"siteName\":{\"type\":\"String\",\"value\":\"xDeploymentTestSite14863\"},\"hostingPlanName\":{\"type\":\"String\",\"value\":\"xDeploymentTestHost27666\"},\"siteLocation\":{\"type\":\"String\",\"value\":\"West US\"},\"sku\":{\"type\":\"String\",\"value\":\"Standard\"},\"workerSize\":{\"type\":\"String\",\"value\":\"0\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Running\",\"timestamp\":\"2016-04-21T03:29:16.0118938Z\",\"duration\":\"PT0.8963013S\",\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"providers\":[{\"namespace\":\"Microsoft.Web\",\"resourceTypes\":[{\"resourceType\":\"serverfarms\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites\",\"locations\":[\"westus\"]},{\"resourceType\":\"sites/Extensions\",\"locations\":[null]}]},{\"namespace\":\"microsoft.insights\",\"resourceTypes\":[{\"resourceType\":\"autoscalesettings\",\"locations\":[\"eastus\"]},{\"resourceType\":\"alertrules\",\"locations\":[\"eastus\"]},{\"resourceType\":\"components\",\"locations\":[\"centralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/Sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/Sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/Extensions/MSDeploy\",\"resourceType\":\"Microsoft.Web/sites/Extensions\",\"resourceName\":\"xDeploymentTestSite14863/MSDeploy\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"resourceType\":\"microsoft.insights/autoscalesettings\",\"resourceName\":\"xDeploymentTestHost27666-xDeploymentTestGroup8771\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ServerErrors xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"ForbiddenRequests xDeploymentTestSite14863\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"CPUHigh xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"resourceType\":\"Microsoft.Web/serverfarms\",\"resourceName\":\"xDeploymentTestHost27666\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost27666\",\"resourceType\":\"microsoft.insights/alertrules\",\"resourceName\":\"LongHttpQueue xDeploymentTestHost27666\"},{\"dependsOn\":[{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"resourceType\":\"Microsoft.Web/sites\",\"resourceName\":\"xDeploymentTestSite14863\"}],\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/microsoft.insights/components/xDeploymentTestSite14863\",\"resourceType\":\"microsoft.insights/components\",\"resourceName\":\"xDeploymentTestSite14863\"}]}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14991', - 'x-ms-request-id': 'bdf52650-1a12-4f8c-ad39-4ac996355dda', - 'x-ms-correlation-request-id': 'bdf52650-1a12-4f8c-ad39-4ac996355dda', - 'x-ms-routing-request-id': 'WESTUS:20160130T204521Z:bdf52650-1a12-4f8c-ad39-4ac996355dda', + 'x-ms-ratelimit-remaining-subscription-reads': '14996', + 'x-ms-request-id': '9ba30047-eb94-4f75-b358-2daaa9425483', + 'x-ms-correlation-request-id': '9ba30047-eb94-4f75-b358-2daaa9425483', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032942Z:9ba30047-eb94-4f75-b358-2daaa9425483', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 20:45:20 GMT', + date: 'Thu, 21 Apr 2016 03:29:41 GMT', connection: 'close', - 'content-length': '6046' }); + 'content-length': '5360' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') .filteringPath(function (path) { return path.slice(0, path.indexOf('&')); }) -.get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') - .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"563e9c8f-c783-4dde-a583-4ab582f1f2d6\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/563e9c8f-c783-4dde-a583-4ab582f1f2d6/ticks/635897835047681807\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"c140b3a8-0bc9-47d3-b715-3d6777e7deb9\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:45:04.7681807Z\",\"submissionTimestamp\":\"2016-01-30T20:45:20.0560826Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"81507804-44fd-403e-a004-183e4c1c2f3a\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/81507804-44fd-403e-a004-183e4c1c2f3a/ticks/635897834845576399\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:44.5576399Z\",\"submissionTimestamp\":\"2016-01-30T20:45:00.1488242Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"1d8201f1-bdef-4030-a628-9824d567d98e\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/1d8201f1-bdef-4030-a628-9824d567d98e/ticks/635897834764237635\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"4680f073-2e10-45cc-b582-4becdcc0fa08\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.4237635Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"11461a07-66d6-48bb-b37a-3697f1cf262b\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/11461a07-66d6-48bb-b37a-3697f1cf262b/ticks/635897834760908381\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"574a127c-796e-46c6-8bff-2be1d41d013e\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.0908381Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3dcdf9b3-21d3-40b7-a919-7beadb184dc3\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/3dcdf9b3-21d3-40b7-a919-7beadb184dc3/ticks/635897834739073368\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:33.9073368Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"df82fddd-1362-451d-8bfa-59cc95b77236\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/df82fddd-1362-451d-8bfa-59cc95b77236/ticks/635897834714010462\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.4010462Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"64f18084-1599-4410-8a8a-b09318368ca8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/64f18084-1599-4410-8a8a-b09318368ca8/ticks/635897834713830947\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.3830947Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3354531e-e64a-43ed-a46f-ad29592377d8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/3354531e-e64a-43ed-a46f-ad29592377d8/ticks/635897834707750254\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.7750254Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"635bc019-0f31-4207-9e62-bac951886ffd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/635bc019-0f31-4207-9e62-bac951886ffd/ticks/635897834701487199\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.1487199Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1595084Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"97cce7da-32f2-4f68-b045-4081c45ce89d\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/97cce7da-32f2-4f68-b045-4081c45ce89d/ticks/635897834688736557\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"be2e5a59-f6cc-4ee8-aaf7-535ea9f7bcc4\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.8736557Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"d10d5051-649a-40fa-a0eb-2e91915098c8\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/d10d5051-649a-40fa-a0eb-2e91915098c8/ticks/635897834681382642\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a00cd931-247f-49b7-a7e8-8355e495acc8\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.1382642Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5d54d09a-ec0d-449a-b663-ef44d0f31483\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/5d54d09a-ec0d-449a-b663-ef44d0f31483/ticks/635897834679699614\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"c6cb0a54-1788-4aee-8992-749df3cfa823\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.9699614Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e80ba99-cdd2-4d69-9ce8-632892fa5b59\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/3e80ba99-cdd2-4d69-9ce8-632892fa5b59/ticks/635897834678400623\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"6f217912-4d89-466e-9676-f359a688b1d6\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.8400623Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"6d7f7b82-c391-476d-90c9-df21a6a5907e\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/6d7f7b82-c391-476d-90c9-df21a6a5907e/ticks/635897834629665163\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.9665163Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"8c256639-77dd-4c83-97cb-cc73b8cd97fb\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/8c256639-77dd-4c83-97cb-cc73b8cd97fb/ticks/635897834624509096\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.4509096Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0013722Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"f8130f44-2401-4f70-881d-b6ee0bcea66d\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/f8130f44-2401-4f70-881d-b6ee0bcea66d/ticks/635897834617843001\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7843001Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"0ce74987-0cc3-4d9d-9e14-656285941f8b\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/0ce74987-0cc3-4d9d-9e14-656285941f8b/ticks/635897834617030874\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"East US\\\",\\\"tags\\\":{\\\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\":\\\"Resource\\\"},\\\"properties\\\":{\\\"profiles\\\":[{\\\"name\\\":\\\"Default\\\",\\\"capacity\\\":{\\\"minimum\\\":\\\"1\\\",\\\"maximum\\\":\\\"2\\\",\\\"default\\\":\\\"1\\\"},\\\"rules\\\":[{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT10M\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"GreaterThan\\\",\\\"threshold\\\":80},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Increase\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT10M\\\"}},{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT1H\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"LessThan\\\",\\\"threshold\\\":60},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Decrease\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT1H\\\"}}]}],\\\"enabled\\\":false,\\\"name\\\":\\\"xDeploymentTestHost5985-xDeploymentTestGroup8112\\\",\\\"targetResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\"}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7030874Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5b91b4a3-5a9a-449f-aabd-e9491c76c408\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/5b91b4a3-5a9a-449f-aabd-e9491c76c408/ticks/635897834605702569\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a4880b3a-bcca-4af7-be9e-ebe5c41f0bb1\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:20.5702569Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.3630067Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e56b70c-80aa-4ef5-8d40-c679844ca8c3\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/3e56b70c-80aa-4ef5-8d40-c679844ca8c3/ticks/635897834542692920\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:14.269292Z\",\"submissionTimestamp\":\"2016-01-30T20:44:29.5305932Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"2a5785c1-d8b4-4448-be7e-78b70f8e4105\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/2a5785c1-d8b4-4448-be7e-78b70f8e4105/ticks/635897834516702266\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:11.6702266Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"733ba68b-0bbf-4b30-b7c1-8c6b963e98f0\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/733ba68b-0bbf-4b30-b7c1-8c6b963e98f0/ticks/635897834497327895\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:09.7327895Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"}]}", { 'cache-control': 'no-cache', +.get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') + .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"5b9fafe7-8cbe-45cd-bd20-81bbbb7b5f9c\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"e02dc53f-3d6f-4e9f-9600-8b2a66d7f970\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771/events/5b9fafe7-8cbe-45cd-bd20-81bbbb7b5f9c/ticks/635968061680201420\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"operationId\":\"5cfe9b28-96e5-4840-ba3f-f9c2272244d8\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"78277376-d478-4a70-83f4-a84dc891ea5d\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-04-21T03:29:28.020142Z\",\"submissionTimestamp\":\"2016-04-21T03:29:40.6670697Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"a28cbc21-8082-4f97-becb-3d0f872a081f\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"618f9ec6-43c5-4f04-a9ca-ceb615fab61b\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/events/a28cbc21-8082-4f97-becb-3d0f872a081f/ticks/635968061648889432\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"operationId\":\"a58cd8bb-3a50-4a69-a23a-4f1013cd3927\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:24.8889432Z\",\"submissionTimestamp\":\"2016-04-21T03:29:39.9403964Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"04bb57b9-7470-4920-b9b3-2135ea6b06f6\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"e02dc53f-3d6f-4e9f-9600-8b2a66d7f970\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771/events/04bb57b9-7470-4920-b9b3-2135ea6b06f6/ticks/635968061644656669\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"operationId\":\"5cfe9b28-96e5-4840-ba3f-f9c2272244d8\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"East US\\\",\\\"tags\\\":{\\\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\\\":\\\"Resource\\\"},\\\"properties\\\":{\\\"profiles\\\":[{\\\"name\\\":\\\"Default\\\",\\\"capacity\\\":{\\\"minimum\\\":\\\"1\\\",\\\"maximum\\\":\\\"2\\\",\\\"default\\\":\\\"1\\\"},\\\"rules\\\":[{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT10M\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"GreaterThan\\\",\\\"threshold\\\":80},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Increase\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT10M\\\"}},{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT1H\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"LessThan\\\",\\\"threshold\\\":60},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Decrease\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT1H\\\"}}]}],\\\"enabled\\\":false,\\\"name\\\":\\\"xDeploymentTestHost27666-xDeploymentTestGroup8771\\\",\\\"targetResourceUri\\\":\\\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\\\"}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:24.4656669Z\",\"submissionTimestamp\":\"2016-04-21T03:29:40.6670697Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"0d7a9433-20e3-4383-9e5f-6f1e229e7d18\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"e3fab87b-d7aa-4128-9912-938a07608e82\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost27666/events/0d7a9433-20e3-4383-9e5f-6f1e229e7d18/ticks/635968061643406651\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"operationId\":\"07827ab2-e63a-4ab6-b903-b8c76150ebdc\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:24.3406651Z\",\"submissionTimestamp\":\"2016-04-21T03:29:40.6670697Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"7bcee135-9980-46c5-a75a-b16ca5560eb8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"08f3aaa8-a1bb-4dd9-9850-6c15a33055df\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666/events/7bcee135-9980-46c5-a75a-b16ca5560eb8/ticks/635968061569156932\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"operationId\":\"190bf84d-ae38-4868-8e2e-93311ccd34ab\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:16.9156932Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.152819Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"c7d04977-8bc8-4798-b1dd-ff54d188eceb\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/c7d04977-8bc8-4798-b1dd-ff54d188eceb/ticks/635968061559322039\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-04-21T03:29:15.9322039Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"e09af290-9451-4126-9748-983a9f89d1fd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/e09af290-9451-4126-9748-983a9f89d1fd/ticks/635968061546666030\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:14.666603Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', - 'content-length': '69387', + 'content-length': '22597', 'content-type': 'application/json; charset=utf-8', expires: '-1', vary: 'Accept-Encoding', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - 'x-ms-request-id': 'WestUS_1046fdd5c35b4bd2b635340815e84edc_635897835221146939', + 'x-ms-request-id': 'EastUS_0bfc92d9d97f4f38a8f90b5cbf0b9911_635968061834367773', server: 'Microsoft-IIS/8.5', - 'x-ms-ratelimit-remaining-subscription-reads': '14993', - 'x-ms-correlation-request-id': '7e70aeec-6f36-4576-861a-b69f4a6fe79f', - 'x-ms-routing-request-id': 'WESTUS:20160130T204522Z:7e70aeec-6f36-4576-861a-b69f4a6fe79f', - date: 'Sat, 30 Jan 2016 20:45:21 GMT', + 'x-ms-ratelimit-remaining-subscription-reads': '14996', + 'x-ms-correlation-request-id': '0247b04d-f59f-4bdb-8427-488aae055814', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032943Z:0247b04d-f59f-4bdb-8427-488aae055814', + date: 'Thu, 21 Apr 2016 03:29:42 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringPath(function (path) { return path.slice(0, path.indexOf('&')); }) -.get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') - .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"563e9c8f-c783-4dde-a583-4ab582f1f2d6\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/563e9c8f-c783-4dde-a583-4ab582f1f2d6/ticks/635897835047681807\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"c140b3a8-0bc9-47d3-b715-3d6777e7deb9\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:45:04.7681807Z\",\"submissionTimestamp\":\"2016-01-30T20:45:20.0560826Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"81507804-44fd-403e-a004-183e4c1c2f3a\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/81507804-44fd-403e-a004-183e4c1c2f3a/ticks/635897834845576399\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:44.5576399Z\",\"submissionTimestamp\":\"2016-01-30T20:45:00.1488242Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"1d8201f1-bdef-4030-a628-9824d567d98e\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/1d8201f1-bdef-4030-a628-9824d567d98e/ticks/635897834764237635\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"4680f073-2e10-45cc-b582-4becdcc0fa08\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.4237635Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"11461a07-66d6-48bb-b37a-3697f1cf262b\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/11461a07-66d6-48bb-b37a-3697f1cf262b/ticks/635897834760908381\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"574a127c-796e-46c6-8bff-2be1d41d013e\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:36.0908381Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3dcdf9b3-21d3-40b7-a919-7beadb184dc3\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/3dcdf9b3-21d3-40b7-a919-7beadb184dc3/ticks/635897834739073368\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:33.9073368Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"df82fddd-1362-451d-8bfa-59cc95b77236\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"27ba24e8-d9c9-414a-9f2e-6a55a23d1eae\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests+xDeploymentTestSite854/events/df82fddd-1362-451d-8bfa-59cc95b77236/ticks/635897834714010462\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ForbiddenRequests xDeploymentTestSite854\",\"operationId\":\"e22678d3-d91e-401f-b393-a3baa2230011\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.4010462Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.6511593Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"64f18084-1599-4410-8a8a-b09318368ca8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"cee00bb9-1633-4e00-92d8-fb19e33324c3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors+xDeploymentTestSite854/events/64f18084-1599-4410-8a8a-b09318368ca8/ticks/635897834713830947\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/ServerErrors xDeploymentTestSite854\",\"operationId\":\"0aa49fcf-d825-4c96-8259-047e1f910a8a\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:31.3830947Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1605096Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/Extensions/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3354531e-e64a-43ed-a46f-ad29592377d8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"956607a7-ebc8-499c-9396-e08961eb11d8\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy/events/3354531e-e64a-43ed-a46f-ad29592377d8/ticks/635897834707750254\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/Extensions/MSDeploy\",\"operationId\":\"df5b0469-297c-482c-8ce1-306900c836a8\",\"operationName\":{\"value\":\"Microsoft.Web/sites/Extensions/write\",\"localizedValue\":\"Update website extension\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.7750254Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/components/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"635bc019-0f31-4207-9e62-bac951886ffd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"2cef234f-8244-4b7a-b9b0-7d0b11dd91d3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854/events/635bc019-0f31-4207-9e62-bac951886ffd/ticks/635897834701487199\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/components/xDeploymentTestSite854\",\"operationId\":\"a09eaa40-63f3-4371-8804-25c2616003ab\",\"operationName\":{\"value\":\"microsoft.insights/components/write\",\"localizedValue\":\"Update insights component\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:30.1487199Z\",\"submissionTimestamp\":\"2016-01-30T20:44:50.1595084Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"97cce7da-32f2-4f68-b045-4081c45ce89d\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/97cce7da-32f2-4f68-b045-4081c45ce89d/ticks/635897834688736557\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"be2e5a59-f6cc-4ee8-aaf7-535ea9f7bcc4\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.8736557Z\",\"submissionTimestamp\":\"2016-01-30T20:44:49.5990144Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"d10d5051-649a-40fa-a0eb-2e91915098c8\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/d10d5051-649a-40fa-a0eb-2e91915098c8/ticks/635897834681382642\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a00cd931-247f-49b7-a7e8-8355e495acc8\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:28.1382642Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5d54d09a-ec0d-449a-b663-ef44d0f31483\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/5d54d09a-ec0d-449a-b663-ef44d0f31483/ticks/635897834679699614\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"c6cb0a54-1788-4aee-8992-749df3cfa823\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.9699614Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e80ba99-cdd2-4d69-9ce8-632892fa5b59\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/3e80ba99-cdd2-4d69-9ce8-632892fa5b59/ticks/635897834678400623\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"6f217912-4d89-466e-9676-f359a688b1d6\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:27.8400623Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"6d7f7b82-c391-476d-90c9-df21a6a5907e\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"9e6dda51-6f46-4b4a-bbff-8c99ee632346\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854/events/6d7f7b82-c391-476d-90c9-df21a6a5907e/ticks/635897834629665163\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/sites/xDeploymentTestSite854\",\"operationId\":\"e1932a9d-3f15-4e9c-8d42-2d7fe6022b1b\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.9665163Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0023739Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"8c256639-77dd-4c83-97cb-cc73b8cd97fb\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"7f26436f-1145-4907-8ad9-0f95e0b29de1\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost5985/events/8c256639-77dd-4c83-97cb-cc73b8cd97fb/ticks/635897834624509096\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost5985\",\"operationId\":\"879a7c87-61e6-4c96-a798-7ff13149121c\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:22.4509096Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.0013722Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"f8130f44-2401-4f70-881d-b6ee0bcea66d\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"a4f87cca-7bfa-4a48-bb3f-00fe9da209e3\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue+xDeploymentTestHost5985/events/f8130f44-2401-4f70-881d-b6ee0bcea66d/ticks/635897834617843001\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/alertrules/LongHttpQueue xDeploymentTestHost5985\",\"operationId\":\"7d2eeb56-9233-479b-91ad-e31ad61612d5\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7843001Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.513082Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"0ce74987-0cc3-4d9d-9e14-656285941f8b\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"b1e44014-68f9-4e31-bc8a-04bb7e038fca\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112/events/0ce74987-0cc3-4d9d-9e14-656285941f8b/ticks/635897834617030874\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost5985-xDeploymentTestGroup8112\",\"operationId\":\"45d1cf57-ee91-45b7-94c0-9d3431d20921\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"East US\\\",\\\"tags\\\":{\\\"hidden-link:/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\":\\\"Resource\\\"},\\\"properties\\\":{\\\"profiles\\\":[{\\\"name\\\":\\\"Default\\\",\\\"capacity\\\":{\\\"minimum\\\":\\\"1\\\",\\\"maximum\\\":\\\"2\\\",\\\"default\\\":\\\"1\\\"},\\\"rules\\\":[{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT10M\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"GreaterThan\\\",\\\"threshold\\\":80},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Increase\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT10M\\\"}},{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT1H\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"LessThan\\\",\\\"threshold\\\":60},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Decrease\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT1H\\\"}}]}],\\\"enabled\\\":false,\\\"name\\\":\\\"xDeploymentTestHost5985-xDeploymentTestGroup8112\\\",\\\"targetResourceUri\\\":\\\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\\\"}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:21.7030874Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.4246954Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"5b91b4a3-5a9a-449f-aabd-e9491c76c408\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/5b91b4a3-5a9a-449f-aabd-e9491c76c408/ticks/635897834605702569\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"properties\":{\"statusCode\":\"OK\",\"serviceRequestId\":\"a4880b3a-bcca-4af7-be9e-ebe5c41f0bb1\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"OK\",\"localizedValue\":\"OK (HTTP Status Code: 200)\"},\"eventTimestamp\":\"2016-01-30T20:44:20.5702569Z\",\"submissionTimestamp\":\"2016-01-30T20:44:40.3630067Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"3e56b70c-80aa-4ef5-8d40-c679844ca8c3\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"6ff67471-c16e-4545-a281-086aef2624c9\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985/events/3e56b70c-80aa-4ef5-8d40-c679844ca8c3/ticks/635897834542692920\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Web/serverfarms/xDeploymentTestHost5985\",\"operationId\":\"46fa1c02-95e5-48ad-8a65-50544c9a2fe9\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:14.269292Z\",\"submissionTimestamp\":\"2016-01-30T20:44:29.5305932Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"2a5785c1-d8b4-4448-be7e-78b70f8e4105\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/2a5785c1-d8b4-4448-be7e-78b70f8e4105/ticks/635897834516702266\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-01-30T20:44:11.6702266Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"role\":\"Subscription Admin\",\"scope\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\"},\"caller\":\"amzavery@microsoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\",\"iat\":\"1454183785\",\"nbf\":\"1454183785\",\"exp\":\"1454187685\",\"_claim_names\":\"{\\\"groups\\\":\\\"src1\\\"}\",\"_claim_sources\":\"{\\\"src1\\\":{\\\"endpoint\\\":\\\"https://graph.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/users/1961eabf-2157-4c43-9441-a6d049d05cda/getMemberObjects\\\"}}\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd,mfa\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"Zavery\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"Amar\",\"in_corp\":\"true\",\"ipaddr\":\"131.107.147.218\",\"name\":\"Amar Zavery\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"1961eabf-2157-4c43-9441-a6d049d05cda\",\"onprem_sid\":\"S-1-5-21-2127521184-1604012920-1887927527-11834144\",\"puid\":\"1003000085B32C55\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"kS5adkzmrbH6n9HBcDsmTPNiE_JHxxNk4HPjBQd9ZG0\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"amzavery@microsoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"amzavery@microsoft.com\",\"ver\":\"1.0\"},\"correlationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"description\":\"\",\"eventDataId\":\"733ba68b-0bbf-4b30-b7c1-8c6b963e98f0\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"d14caff5-37bd-4b8d-8f8a-65276ccb632a\",\"clientIpAddress\":\"131.107.174.90\",\"method\":\"PUT\"},\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629/events/733ba68b-0bbf-4b30-b7c1-8c6b963e98f0/ticks/635897834497327895\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8112\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xDeploymentTestGroup8112/providers/Microsoft.Resources/deployments/Deploy15629\",\"operationId\":\"7b72d842-f7f4-4d32-9165-c248ab79e8bd\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-01-30T20:44:09.7327895Z\",\"submissionTimestamp\":\"2016-01-30T20:44:30.1426045Z\",\"subscriptionId\":\"00977cdb-163f-435f-9c32-39ec8ae61f4d\"}]}", { 'cache-control': 'no-cache', +.get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/providers/microsoft.insights/eventtypes/management/values?api-version=2014-04-01') + .reply(200, "{\"value\":[{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"5b9fafe7-8cbe-45cd-bd20-81bbbb7b5f9c\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"e02dc53f-3d6f-4e9f-9600-8b2a66d7f970\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771/events/5b9fafe7-8cbe-45cd-bd20-81bbbb7b5f9c/ticks/635968061680201420\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"operationId\":\"5cfe9b28-96e5-4840-ba3f-f9c2272244d8\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":\"78277376-d478-4a70-83f4-a84dc891ea5d\"},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-04-21T03:29:28.020142Z\",\"submissionTimestamp\":\"2016-04-21T03:29:40.6670697Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Web/sites/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"a28cbc21-8082-4f97-becb-3d0f872a081f\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"618f9ec6-43c5-4f04-a9ca-ceb615fab61b\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863/events/a28cbc21-8082-4f97-becb-3d0f872a081f/ticks/635968061648889432\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/sites/xDeploymentTestSite14863\",\"operationId\":\"a58cd8bb-3a50-4a69-a23a-4f1013cd3927\",\"operationName\":{\"value\":\"Microsoft.Web/sites/write\",\"localizedValue\":\"Update website\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:24.8889432Z\",\"submissionTimestamp\":\"2016-04-21T03:29:39.9403964Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"microsoft.insights/autoscalesettings/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"04bb57b9-7470-4920-b9b3-2135ea6b06f6\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"e02dc53f-3d6f-4e9f-9600-8b2a66d7f970\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771/events/04bb57b9-7470-4920-b9b3-2135ea6b06f6/ticks/635968061644656669\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/autoscalesettings/xDeploymentTestHost27666-xDeploymentTestGroup8771\",\"operationId\":\"5cfe9b28-96e5-4840-ba3f-f9c2272244d8\",\"operationName\":{\"value\":\"microsoft.insights/autoscalesettings/write\",\"localizedValue\":\"Update autoscale setting\"},\"properties\":{\"requestbody\":\"{\\\"location\\\":\\\"East US\\\",\\\"tags\\\":{\\\"hidden-link:/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\\\":\\\"Resource\\\"},\\\"properties\\\":{\\\"profiles\\\":[{\\\"name\\\":\\\"Default\\\",\\\"capacity\\\":{\\\"minimum\\\":\\\"1\\\",\\\"maximum\\\":\\\"2\\\",\\\"default\\\":\\\"1\\\"},\\\"rules\\\":[{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT10M\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"GreaterThan\\\",\\\"threshold\\\":80},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Increase\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT10M\\\"}},{\\\"metricTrigger\\\":{\\\"metricName\\\":\\\"CpuPercentage\\\",\\\"metricResourceUri\\\":\\\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\\\",\\\"timeGrain\\\":\\\"PT1M\\\",\\\"statistic\\\":\\\"Average\\\",\\\"timeWindow\\\":\\\"PT1H\\\",\\\"timeAggregation\\\":\\\"Average\\\",\\\"operator\\\":\\\"LessThan\\\",\\\"threshold\\\":60},\\\"scaleAction\\\":{\\\"direction\\\":\\\"Decrease\\\",\\\"type\\\":\\\"ChangeCount\\\",\\\"value\\\":\\\"1\\\",\\\"cooldown\\\":\\\"PT1H\\\"}}]}],\\\"enabled\\\":false,\\\"name\\\":\\\"xDeploymentTestHost27666-xDeploymentTestGroup8771\\\",\\\"targetResourceUri\\\":\\\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\\\"}}\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:24.4656669Z\",\"submissionTimestamp\":\"2016-04-21T03:29:40.6670697Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"microsoft.insights/alertrules/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"0d7a9433-20e3-4383-9e5f-6f1e229e7d18\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"e3fab87b-d7aa-4128-9912-938a07608e82\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh+xDeploymentTestHost27666/events/0d7a9433-20e3-4383-9e5f-6f1e229e7d18/ticks/635968061643406651\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"microsoft.insights\",\"localizedValue\":\"Microsoft Insights\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/microsoft.insights/alertrules/CPUHigh xDeploymentTestHost27666\",\"operationId\":\"07827ab2-e63a-4ab6-b903-b8c76150ebdc\",\"operationName\":{\"value\":\"microsoft.insights/alertrules/write\",\"localizedValue\":\"Update alert rule\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:24.3406651Z\",\"submissionTimestamp\":\"2016-04-21T03:29:40.6670697Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Web/serverfarms/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"7bcee135-9980-46c5-a75a-b16ca5560eb8\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"08f3aaa8-a1bb-4dd9-9850-6c15a33055df\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666/events/7bcee135-9980-46c5-a75a-b16ca5560eb8/ticks/635968061569156932\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Web\",\"localizedValue\":\"Azure Web Sites\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Web/serverfarms/xDeploymentTestHost27666\",\"operationId\":\"190bf84d-ae38-4868-8e2e-93311ccd34ab\",\"operationName\":{\"value\":\"Microsoft.Web/serverfarms/write\",\"localizedValue\":\"Update hosting plan\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:16.9156932Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.152819Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"c7d04977-8bc8-4798-b1dd-ff54d188eceb\",\"eventName\":{\"value\":\"EndRequest\",\"localizedValue\":\"End request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/c7d04977-8bc8-4798-b1dd-ff54d188eceb/ticks/635968061559322039\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"properties\":{\"statusCode\":\"Created\",\"serviceRequestId\":null},\"status\":{\"value\":\"Succeeded\",\"localizedValue\":\"Succeeded\"},\"subStatus\":{\"value\":\"Created\",\"localizedValue\":\"Created (HTTP Status Code: 201)\"},\"eventTimestamp\":\"2016-04-21T03:29:15.9322039Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"},{\"authorization\":{\"action\":\"Microsoft.Resources/deployments/write\",\"scope\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\"},\"caller\":\"admin2@rbactest.onmicrosoft.com\",\"channels\":\"Operation\",\"claims\":{\"aud\":\"https://management.core.windows.net/\",\"iss\":\"https://sts.windows.net/1449d5b7-8a83-47db-ae4c-9b03e888bad0/\",\"iat\":\"1461207951\",\"nbf\":\"1461207951\",\"exp\":\"1461211851\",\"http://schemas.microsoft.com/claims/authnclassreference\":\"1\",\"http://schemas.microsoft.com/claims/authnmethodsreferences\":\"pwd\",\"appid\":\"04b07795-8ddb-461a-bbee-02f9e1bf7b46\",\"appidacr\":\"0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname\":\"2\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname\":\"admin\",\"groups\":\"34e2879a-12ea-4545-bd26-cbc32ad95f1f\",\"ipaddr\":\"167.220.0.78\",\"name\":\"admin2\",\"http://schemas.microsoft.com/identity/claims/objectidentifier\":\"346d4101-07d0-43cf-8667-5bd339506923\",\"puid\":\"100300008D70CED5\",\"http://schemas.microsoft.com/identity/claims/scope\":\"user_impersonation\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier\":\"ppUr0r9-FoH4LFj-Rz3XcGW8movCt7j45Fy039uT5n8\",\"http://schemas.microsoft.com/identity/claims/tenantid\":\"1449d5b7-8a83-47db-ae4c-9b03e888bad0\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name\":\"admin2@rbactest.onmicrosoft.com\",\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn\":\"admin2@rbactest.onmicrosoft.com\",\"ver\":\"1.0\",\"wids\":\"62e90394-69f5-4237-9190-012177145e10\"},\"correlationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"description\":\"\",\"eventDataId\":\"e09af290-9451-4126-9748-983a9f89d1fd\",\"eventName\":{\"value\":\"BeginRequest\",\"localizedValue\":\"Begin request\"},\"eventSource\":{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},\"httpRequest\":{\"clientRequestId\":\"c5a5f2ca-cc1b-49f5-9344-7e9723aa01b9\",\"clientIpAddress\":\"167.220.0.78\",\"method\":\"PUT\"},\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756/events/e09af290-9451-4126-9748-983a9f89d1fd/ticks/635968061546666030\",\"level\":\"Informational\",\"resourceGroupName\":\"xDeploymentTestGroup8771\",\"resourceProviderName\":{\"value\":\"Microsoft.Resources\",\"localizedValue\":\"Microsoft Resources\"},\"resourceUri\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xDeploymentTestGroup8771/providers/Microsoft.Resources/deployments/Deploy17756\",\"operationId\":\"a34ace8b-e97b-41a1-94cd-b46cd8b5ee07\",\"operationName\":{\"value\":\"Microsoft.Resources/deployments/write\",\"localizedValue\":\"Microsoft.Resources/deployments/write\"},\"status\":{\"value\":\"Started\",\"localizedValue\":\"Started\"},\"subStatus\":{\"value\":\"\",\"localizedValue\":\"\"},\"eventTimestamp\":\"2016-04-21T03:29:14.666603Z\",\"submissionTimestamp\":\"2016-04-21T03:29:30.4393827Z\",\"subscriptionId\":\"3ca49042-782a-4cc9-89b5-ee1b487fe115\"}]}", { 'cache-control': 'no-cache', pragma: 'no-cache', - 'content-length': '69387', + 'content-length': '22597', 'content-type': 'application/json; charset=utf-8', expires: '-1', vary: 'Accept-Encoding', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - 'x-ms-request-id': 'WestUS_1046fdd5c35b4bd2b635340815e84edc_635897835221146939', + 'x-ms-request-id': 'EastUS_0bfc92d9d97f4f38a8f90b5cbf0b9911_635968061834367773', server: 'Microsoft-IIS/8.5', - 'x-ms-ratelimit-remaining-subscription-reads': '14993', - 'x-ms-correlation-request-id': '7e70aeec-6f36-4576-861a-b69f4a6fe79f', - 'x-ms-routing-request-id': 'WESTUS:20160130T204522Z:7e70aeec-6f36-4576-861a-b69f4a6fe79f', - date: 'Sat, 30 Jan 2016 20:45:21 GMT', + 'x-ms-ratelimit-remaining-subscription-reads': '14996', + 'x-ms-correlation-request-id': '0247b04d-f59f-4bdb-8427-488aae055814', + 'x-ms-routing-request-id': 'CENTRALUS:20160421T032943Z:0247b04d-f59f-4bdb-8427-488aae055814', + date: 'Thu, 21 Apr 2016 03:29:42 GMT', connection: 'close' }); return result; }]]; \ No newline at end of file diff --git a/test/recordings/arm-cli-group-tests/arm_group_show_should_show_information_of_an_empty_group.nock.js b/test/recordings/arm-cli-group-tests/arm_group_show_should_show_information_of_an_empty_group.nock.js index 16d4a5df31..39de8b75e7 100644 --- a/test/recordings/arm-cli-group-tests/arm_group_show_should_show_information_of_an_empty_group.nock.js +++ b/test/recordings/arm-cli-group-tests/arm_group_show_should_show_information_of_an_empty_group.nock.js @@ -6,13 +6,13 @@ exports.getMockedProfile = function () { var newProfile = new profile.Profile(); newProfile.addSubscription(new profile.Subscription({ - id: '00977cdb-163f-435f-9c32-39ec8ae61f4d', - name: 'node', + id: '3ca49042-782a-4cc9-89b5-ee1b487fe115', + name: 'AzSdkCore1', user: { name: 'user@domain.example', type: 'user' }, - tenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47', + tenantId: '1449d5b7-8a83-47db-ae4c-9b03e888bad0', state: 'Enabled', registeredProviders: [], _eventsCount: '1', @@ -29,36 +29,36 @@ exports.setEnvironment = function() { exports.scopes = [[function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGrpShow8440?api-version=2016-02-01') - .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGrpShow8440' could not be found.\"}}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGrpShow5502?api-version=2016-02-01') + .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGrpShow5502' could not be found.\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-failure-cause': 'gateway', - 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': '4a96b5f8-6b9f-422a-84e4-d49919fb819b', - 'x-ms-correlation-request-id': '4a96b5f8-6b9f-422a-84e4-d49919fb819b', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172156Z:4a96b5f8-6b9f-422a-84e4-d49919fb819b', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': '94396082-0886-4159-b1b2-acf183afd673', + 'x-ms-correlation-request-id': '94396082-0886-4159-b1b2-acf183afd673', + 'x-ms-routing-request-id': 'WESTUS:20160421T032810Z:94396082-0886-4159-b1b2-acf183afd673', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:21:55 GMT', + date: 'Thu, 21 Apr 2016 03:28:09 GMT', connection: 'close', 'content-length': '112' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGrpShow8440?api-version=2016-02-01') - .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGrpShow8440' could not be found.\"}}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGrpShow5502?api-version=2016-02-01') + .reply(404, "{\"error\":{\"code\":\"ResourceGroupNotFound\",\"message\":\"Resource group 'xplatTestGrpShow5502' could not be found.\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', 'x-ms-failure-cause': 'gateway', - 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-request-id': '4a96b5f8-6b9f-422a-84e4-d49919fb819b', - 'x-ms-correlation-request-id': '4a96b5f8-6b9f-422a-84e4-d49919fb819b', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172156Z:4a96b5f8-6b9f-422a-84e4-d49919fb819b', + 'x-ms-ratelimit-remaining-subscription-reads': '14997', + 'x-ms-request-id': '94396082-0886-4159-b1b2-acf183afd673', + 'x-ms-correlation-request-id': '94396082-0886-4159-b1b2-acf183afd673', + 'x-ms-routing-request-id': 'WESTUS:20160421T032810Z:94396082-0886-4159-b1b2-acf183afd673', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:21:55 GMT', + date: 'Thu, 21 Apr 2016 03:28:09 GMT', connection: 'close', 'content-length': '112' }); return result; }, @@ -66,250 +66,250 @@ function (nock) { var result = nock('http://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGrpShow8440?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow8440\",\"name\":\"xplatTestGrpShow8440\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGrpShow5502?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGrpShow5502\",\"name\":\"xplatTestGrpShow5502\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '203', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-writes': '1198', - 'x-ms-request-id': '2733cd0d-e416-47a6-9d06-bbea279d1573', - 'x-ms-correlation-request-id': '2733cd0d-e416-47a6-9d06-bbea279d1573', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172157Z:2733cd0d-e416-47a6-9d06-bbea279d1573', + 'x-ms-ratelimit-remaining-subscription-writes': '1199', + 'x-ms-request-id': '0bb92d7e-e142-4ce2-a9eb-dde7592a2e45', + 'x-ms-correlation-request-id': '0bb92d7e-e142-4ce2-a9eb-dde7592a2e45', + 'x-ms-routing-request-id': 'WESTUS:20160421T032810Z:0bb92d7e-e142-4ce2-a9eb-dde7592a2e45', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:21:57 GMT', + date: 'Thu, 21 Apr 2016 03:28:10 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') .filteringRequestBody(function (path) { return '*';}) -.put('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGrpShow8440?api-version=2016-02-01', '*') - .reply(201, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow8440\",\"name\":\"xplatTestGrpShow8440\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', +.put('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGrpShow5502?api-version=2016-02-01', '*') + .reply(201, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGrpShow5502\",\"name\":\"xplatTestGrpShow5502\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '203', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-writes': '1198', - 'x-ms-request-id': '2733cd0d-e416-47a6-9d06-bbea279d1573', - 'x-ms-correlation-request-id': '2733cd0d-e416-47a6-9d06-bbea279d1573', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172157Z:2733cd0d-e416-47a6-9d06-bbea279d1573', + 'x-ms-ratelimit-remaining-subscription-writes': '1199', + 'x-ms-request-id': '0bb92d7e-e142-4ce2-a9eb-dde7592a2e45', + 'x-ms-correlation-request-id': '0bb92d7e-e142-4ce2-a9eb-dde7592a2e45', + 'x-ms-routing-request-id': 'WESTUS:20160421T032810Z:0bb92d7e-e142-4ce2-a9eb-dde7592a2e45', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:21:57 GMT', + date: 'Thu, 21 Apr 2016 03:28:10 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGrpShow8440?api-version=2016-02-01') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow8440\",\"name\":\"xplatTestGrpShow8440\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGrpShow5502?api-version=2016-02-01') + .reply(200, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGrpShow5502\",\"name\":\"xplatTestGrpShow5502\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': '4b29119f-66fb-437d-8896-f42f8478d44f', - 'x-ms-correlation-request-id': '4b29119f-66fb-437d-8896-f42f8478d44f', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172158Z:4b29119f-66fb-437d-8896-f42f8478d44f', + 'x-ms-ratelimit-remaining-subscription-reads': '14998', + 'x-ms-request-id': '99f21005-cafb-4215-8e12-64ef51d34ea7', + 'x-ms-correlation-request-id': '99f21005-cafb-4215-8e12-64ef51d34ea7', + 'x-ms-routing-request-id': 'WESTUS:20160421T032810Z:99f21005-cafb-4215-8e12-64ef51d34ea7', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:21:57 GMT', + date: 'Thu, 21 Apr 2016 03:28:10 GMT', connection: 'close', 'content-length': '203' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGrpShow8440?api-version=2016-02-01') - .reply(200, "{\"id\":\"/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow8440\",\"name\":\"xplatTestGrpShow8440\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGrpShow5502?api-version=2016-02-01') + .reply(200, "{\"id\":\"/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGrpShow5502\",\"name\":\"xplatTestGrpShow5502\",\"location\":\"westus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\"}}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': '4b29119f-66fb-437d-8896-f42f8478d44f', - 'x-ms-correlation-request-id': '4b29119f-66fb-437d-8896-f42f8478d44f', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172158Z:4b29119f-66fb-437d-8896-f42f8478d44f', + 'x-ms-ratelimit-remaining-subscription-reads': '14998', + 'x-ms-request-id': '99f21005-cafb-4215-8e12-64ef51d34ea7', + 'x-ms-correlation-request-id': '99f21005-cafb-4215-8e12-64ef51d34ea7', + 'x-ms-routing-request-id': 'WESTUS:20160421T032810Z:99f21005-cafb-4215-8e12-64ef51d34ea7', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:21:57 GMT', + date: 'Thu, 21 Apr 2016 03:28:10 GMT', connection: 'close', 'content-length': '203' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow8440/resources?api-version=2016-02-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGrpShow5502/resources?api-version=2016-02-01') .reply(200, "{\"value\":[]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': '03321424-f478-437f-88ef-4ce25f55ef8c', - 'x-ms-correlation-request-id': '03321424-f478-437f-88ef-4ce25f55ef8c', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172158Z:03321424-f478-437f-88ef-4ce25f55ef8c', + 'x-ms-ratelimit-remaining-subscription-reads': '14999', + 'x-ms-request-id': '179e7e84-8454-4838-828a-1584be1b57c9', + 'x-ms-correlation-request-id': '179e7e84-8454-4838-828a-1584be1b57c9', + 'x-ms-routing-request-id': 'WESTUS:20160421T032811Z:179e7e84-8454-4838-828a-1584be1b57c9', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:21:57 GMT', + date: 'Thu, 21 Apr 2016 03:28:10 GMT', connection: 'close', 'content-length': '12' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourceGroups/xplatTestGrpShow8440/resources?api-version=2016-02-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourceGroups/xplatTestGrpShow5502/resources?api-version=2016-02-01') .reply(200, "{\"value\":[]}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': '03321424-f478-437f-88ef-4ce25f55ef8c', - 'x-ms-correlation-request-id': '03321424-f478-437f-88ef-4ce25f55ef8c', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172158Z:03321424-f478-437f-88ef-4ce25f55ef8c', + 'x-ms-ratelimit-remaining-subscription-reads': '14999', + 'x-ms-request-id': '179e7e84-8454-4838-828a-1584be1b57c9', + 'x-ms-correlation-request-id': '179e7e84-8454-4838-828a-1584be1b57c9', + 'x-ms-routing-request-id': 'WESTUS:20160421T032811Z:179e7e84-8454-4838-828a-1584be1b57c9', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:21:57 GMT', + date: 'Thu, 21 Apr 2016 03:28:10 GMT', connection: 'close', 'content-length': '12' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGrpShow8440/providers/Microsoft.Authorization/permissions?api-version=2015-07-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGrpShow5502/providers/Microsoft.Authorization/permissions?api-version=2015-07-01') .reply(200, "{\"value\":[{\"actions\":[\"*\"],\"notActions\":[]}],\"nextLink\":null}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '61', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-request-id': 'cb744295-dba1-44d4-8861-537243392a65', + 'x-ms-request-id': '1aad8a8e-7694-4405-8a88-b39e848cd8d6', 'x-ms-gateway-service-instanceid': 'PASFE_IN_0', 'x-content-type-options': 'nosniff', 'strict-transport-security': 'max-age=31536000; includeSubDomains', server: 'Microsoft-IIS/8.5', 'x-powered-by': 'ASP.NET', 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-correlation-request-id': 'cdb28e3e-9bf2-4c25-beea-d8a620b406dc', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172158Z:cdb28e3e-9bf2-4c25-beea-d8a620b406dc', - date: 'Sat, 30 Jan 2016 17:21:58 GMT', + 'x-ms-correlation-request-id': '176acf07-30c4-454d-8d7b-e7c8736806db', + 'x-ms-routing-request-id': 'WESTUS:20160421T032811Z:176acf07-30c4-454d-8d7b-e7c8736806db', + date: 'Thu, 21 Apr 2016 03:28:10 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGrpShow8440/providers/Microsoft.Authorization/permissions?api-version=2015-07-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGrpShow5502/providers/Microsoft.Authorization/permissions?api-version=2015-07-01') .reply(200, "{\"value\":[{\"actions\":[\"*\"],\"notActions\":[]}],\"nextLink\":null}", { 'cache-control': 'no-cache', pragma: 'no-cache', 'content-length': '61', 'content-type': 'application/json; charset=utf-8', expires: '-1', - 'x-ms-request-id': 'cb744295-dba1-44d4-8861-537243392a65', + 'x-ms-request-id': '1aad8a8e-7694-4405-8a88-b39e848cd8d6', 'x-ms-gateway-service-instanceid': 'PASFE_IN_0', 'x-content-type-options': 'nosniff', 'strict-transport-security': 'max-age=31536000; includeSubDomains', server: 'Microsoft-IIS/8.5', 'x-powered-by': 'ASP.NET', 'x-ms-ratelimit-remaining-subscription-reads': '14998', - 'x-ms-correlation-request-id': 'cdb28e3e-9bf2-4c25-beea-d8a620b406dc', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172158Z:cdb28e3e-9bf2-4c25-beea-d8a620b406dc', - date: 'Sat, 30 Jan 2016 17:21:58 GMT', + 'x-ms-correlation-request-id': '176acf07-30c4-454d-8d7b-e7c8736806db', + 'x-ms-routing-request-id': 'WESTUS:20160421T032811Z:176acf07-30c4-454d-8d7b-e7c8736806db', + date: 'Thu, 21 Apr 2016 03:28:10 GMT', connection: 'close' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .delete('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGrpShow8440?api-version=2016-02-01') + .delete('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGrpShow5502?api-version=2016-02-01') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XODQ0MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', + location: 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XNTUwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '7fbed93e-73db-4e65-8f59-9292799ff98a', - 'x-ms-correlation-request-id': '7fbed93e-73db-4e65-8f59-9292799ff98a', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172159Z:7fbed93e-73db-4e65-8f59-9292799ff98a', + 'x-ms-ratelimit-remaining-subscription-writes': '1198', + 'x-ms-request-id': 'acfc133f-037e-47e2-9db3-e81b834c4585', + 'x-ms-correlation-request-id': 'acfc133f-037e-47e2-9db3-e81b834c4585', + 'x-ms-routing-request-id': 'WESTUS:20160421T032811Z:acfc133f-037e-47e2-9db3-e81b834c4585', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:21:59 GMT', + date: 'Thu, 21 Apr 2016 03:28:11 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .delete('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/resourcegroups/xplatTestGrpShow8440?api-version=2016-02-01') + .delete('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/resourcegroups/xplatTestGrpShow5502?api-version=2016-02-01') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XODQ0MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', + location: 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XNTUwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', 'retry-after': '15', - 'x-ms-ratelimit-remaining-subscription-writes': '1199', - 'x-ms-request-id': '7fbed93e-73db-4e65-8f59-9292799ff98a', - 'x-ms-correlation-request-id': '7fbed93e-73db-4e65-8f59-9292799ff98a', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172159Z:7fbed93e-73db-4e65-8f59-9292799ff98a', + 'x-ms-ratelimit-remaining-subscription-writes': '1198', + 'x-ms-request-id': 'acfc133f-037e-47e2-9db3-e81b834c4585', + 'x-ms-correlation-request-id': 'acfc133f-037e-47e2-9db3-e81b834c4585', + 'x-ms-routing-request-id': 'WESTUS:20160421T032811Z:acfc133f-037e-47e2-9db3-e81b834c4585', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:21:59 GMT', + date: 'Thu, 21 Apr 2016 03:28:11 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XODQ0MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XNTUwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XODQ0MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', + location: 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XNTUwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', 'retry-after': '15', 'x-ms-ratelimit-remaining-subscription-reads': '14996', - 'x-ms-request-id': 'd0893671-0b39-411f-a874-0c7ab20e69bc', - 'x-ms-correlation-request-id': 'd0893671-0b39-411f-a874-0c7ab20e69bc', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172229Z:d0893671-0b39-411f-a874-0c7ab20e69bc', + 'x-ms-request-id': 'aaaf2de2-abb2-4db9-b1a5-7b13b4ce642c', + 'x-ms-correlation-request-id': 'aaaf2de2-abb2-4db9-b1a5-7b13b4ce642c', + 'x-ms-routing-request-id': 'WESTUS:20160421T032841Z:aaaf2de2-abb2-4db9-b1a5-7b13b4ce642c', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:22:29 GMT', + date: 'Thu, 21 Apr 2016 03:28:40 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XODQ0MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XNTUwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') .reply(202, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - location: 'https://management.azure.com/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XODQ0MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01', + location: 'https://management.azure.com/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XNTUwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01', 'retry-after': '15', 'x-ms-ratelimit-remaining-subscription-reads': '14996', - 'x-ms-request-id': 'd0893671-0b39-411f-a874-0c7ab20e69bc', - 'x-ms-correlation-request-id': 'd0893671-0b39-411f-a874-0c7ab20e69bc', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172229Z:d0893671-0b39-411f-a874-0c7ab20e69bc', + 'x-ms-request-id': 'aaaf2de2-abb2-4db9-b1a5-7b13b4ce642c', + 'x-ms-correlation-request-id': 'aaaf2de2-abb2-4db9-b1a5-7b13b4ce642c', + 'x-ms-routing-request-id': 'WESTUS:20160421T032841Z:aaaf2de2-abb2-4db9-b1a5-7b13b4ce642c', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:22:29 GMT', + date: 'Thu, 21 Apr 2016 03:28:40 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('http://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XODQ0MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XNTUwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') .reply(200, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': '28fdf5f1-3bf5-4aa0-993a-41bd7fad24ea', - 'x-ms-correlation-request-id': '28fdf5f1-3bf5-4aa0-993a-41bd7fad24ea', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172300Z:28fdf5f1-3bf5-4aa0-993a-41bd7fad24ea', + 'x-ms-ratelimit-remaining-subscription-reads': '14995', + 'x-ms-request-id': '50efc6cf-2ef8-4d2d-9ccc-52b49c51ff8b', + 'x-ms-correlation-request-id': '50efc6cf-2ef8-4d2d-9ccc-52b49c51ff8b', + 'x-ms-routing-request-id': 'WESTUS:20160421T032911Z:50efc6cf-2ef8-4d2d-9ccc-52b49c51ff8b', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:23:00 GMT', + date: 'Thu, 21 Apr 2016 03:29:11 GMT', connection: 'close', 'content-length': '0' }); return result; }, function (nock) { var result = nock('https://management.azure.com:443') - .get('/subscriptions/00977cdb-163f-435f-9c32-39ec8ae61f4d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XODQ0MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01') + .get('/subscriptions/3ca49042-782a-4cc9-89b5-ee1b487fe115/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1YUExBVFRFU1RHUlBTSE9XNTUwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-02-01') .reply(200, "", { 'cache-control': 'no-cache', pragma: 'no-cache', expires: '-1', - 'x-ms-ratelimit-remaining-subscription-reads': '14997', - 'x-ms-request-id': '28fdf5f1-3bf5-4aa0-993a-41bd7fad24ea', - 'x-ms-correlation-request-id': '28fdf5f1-3bf5-4aa0-993a-41bd7fad24ea', - 'x-ms-routing-request-id': 'CENTRALUS:20160130T172300Z:28fdf5f1-3bf5-4aa0-993a-41bd7fad24ea', + 'x-ms-ratelimit-remaining-subscription-reads': '14995', + 'x-ms-request-id': '50efc6cf-2ef8-4d2d-9ccc-52b49c51ff8b', + 'x-ms-correlation-request-id': '50efc6cf-2ef8-4d2d-9ccc-52b49c51ff8b', + 'x-ms-routing-request-id': 'WESTUS:20160421T032911Z:50efc6cf-2ef8-4d2d-9ccc-52b49c51ff8b', 'strict-transport-security': 'max-age=31536000; includeSubDomains', - date: 'Sat, 30 Jan 2016 17:23:00 GMT', + date: 'Thu, 21 Apr 2016 03:29:11 GMT', connection: 'close', 'content-length': '0' }); return result; }]]; - exports.randomTestIdsGenerated = function() { return ['xplatTestGrpShow8440'];}; \ No newline at end of file + exports.randomTestIdsGenerated = function() { return ['xplatTestGrpShow5502'];}; \ No newline at end of file diff --git a/test/recordings/arm-cli-group-tests/suite.arm-cli-group-tests.nock.js b/test/recordings/arm-cli-group-tests/suite.arm-cli-group-tests.nock.js index e33399e4cf..2e0f32c69c 100644 --- a/test/recordings/arm-cli-group-tests/suite.arm-cli-group-tests.nock.js +++ b/test/recordings/arm-cli-group-tests/suite.arm-cli-group-tests.nock.js @@ -6,13 +6,13 @@ exports.getMockedProfile = function () { var newProfile = new profile.Profile(); newProfile.addSubscription(new profile.Subscription({ - id: '00977cdb-163f-435f-9c32-39ec8ae61f4d', - name: 'node', + id: '3ca49042-782a-4cc9-89b5-ee1b487fe115', + name: 'AzSdkCore1', user: { name: 'user@domain.example', type: 'user' }, - tenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47', + tenantId: '1449d5b7-8a83-47db-ae4c-9b03e888bad0', state: 'Enabled', registeredProviders: [], _eventsCount: '1',